first
This commit is contained in:
1
node_modules/html-entities/lib/surrogate-pairs.js
generated
vendored
Normal file
1
node_modules/html-entities/lib/surrogate-pairs.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.fromCodePoint=String.fromCodePoint||function(astralCodePoint){return String.fromCharCode(Math.floor((astralCodePoint-65536)/1024)+55296,(astralCodePoint-65536)%1024+56320)};exports.getCodePoint=String.prototype.codePointAt?function(input,position){return input.codePointAt(position)}:function(input,position){return(input.charCodeAt(position)-55296)*1024+input.charCodeAt(position+1)-56320+65536};exports.highSurrogateFrom=55296;exports.highSurrogateTo=56319;
|
Reference in New Issue
Block a user