/var/www/greso.tech/server/nsm/node_modules/entities/lib
NameSizeModeActions
maps/-0755rm
decode.d.ts2710644editdlrm
decode.d.ts.map3000644editdlrm
decode.js22250644editdlrm
decode_codepoint.d.ts1140644editdlrm
decode_codepoint.d.ts.map1920644editdlrm
decode_codepoint.js9460644editdlrm
encode.d.ts2070644editdlrm
encode.d.ts.map2470644editdlrm
encode.js27730644editdlrm
index.d.ts11230644editdlrm
index.d.ts.map6580644editdlrm
index.js31640644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/entities/lib/decode_codepoint.js (946B)
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); var decode_json_1 = __importDefault(require("./maps/decode.json")); // 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 decode_json_1.default) { codePoint = decode_json_1.default[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; } exports.default = decodeCodePoint;