Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/dom-serializer/node_modules/entities/lib/src/decode_codepoint.js')
-rw-r--r--assets/node_modules/dom-serializer/node_modules/entities/lib/src/decode_codepoint.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/assets/node_modules/dom-serializer/node_modules/entities/lib/src/decode_codepoint.js b/assets/node_modules/dom-serializer/node_modules/entities/lib/src/decode_codepoint.js
deleted file mode 100644
index 855a1b3..0000000
--- a/assets/node_modules/dom-serializer/node_modules/entities/lib/src/decode_codepoint.js
+++ /dev/null
@@ -1,25 +0,0 @@
-"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) {
- // @ts-ignore
- 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;