source: trip-planner-front/node_modules/entities/lib/decode_codepoint.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1"use strict";
2var __importDefault = (this && this.__importDefault) || function (mod) {
3 return (mod && mod.__esModule) ? mod : { "default": mod };
4};
5Object.defineProperty(exports, "__esModule", { value: true });
6var decode_json_1 = __importDefault(require("./maps/decode.json"));
7// Adapted from https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119
8var fromCodePoint =
9// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
10String.fromCodePoint ||
11 function (codePoint) {
12 var output = "";
13 if (codePoint > 0xffff) {
14 codePoint -= 0x10000;
15 output += String.fromCharCode(((codePoint >>> 10) & 0x3ff) | 0xd800);
16 codePoint = 0xdc00 | (codePoint & 0x3ff);
17 }
18 output += String.fromCharCode(codePoint);
19 return output;
20 };
21function decodeCodePoint(codePoint) {
22 if ((codePoint >= 0xd800 && codePoint <= 0xdfff) || codePoint > 0x10ffff) {
23 return "\uFFFD";
24 }
25 if (codePoint in decode_json_1.default) {
26 codePoint = decode_json_1.default[codePoint];
27 }
28 return fromCodePoint(codePoint);
29}
30exports.default = decodeCodePoint;
Note: See TracBrowser for help on using the repository browser.