mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-22 08:14:48 -06:00
fa9ae9437c
The gitbook install has been incredibly flaky due to it's dependency on npm. This commit simply vendors the node_modules so that each time we build the site the process doesn't have to re-run gitbook install. Signed-off-by: Torin Sandall <torinsandall@gmail.com>
26 lines
691 B
JavaScript
26 lines
691 B
JavaScript
var decodeMap = require("../maps/decode.json");
|
|
|
|
module.exports = decodeCodePoint;
|
|
|
|
// modified version of https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119
|
|
function decodeCodePoint(codePoint) {
|
|
if ((codePoint >= 0xd800 && codePoint <= 0xdfff) || codePoint > 0x10ffff) {
|
|
return "\uFFFD";
|
|
}
|
|
|
|
if (codePoint in decodeMap) {
|
|
codePoint = decodeMap[codePoint];
|
|
}
|
|
|
|
var output = "";
|
|
|
|
if (codePoint > 0xffff) {
|
|
codePoint -= 0x10000;
|
|
output += String.fromCharCode(((codePoint >>> 10) & 0x3ff) | 0xd800);
|
|
codePoint = 0xdc00 | (codePoint & 0x3ff);
|
|
}
|
|
|
|
output += String.fromCharCode(codePoint);
|
|
return output;
|
|
}
|