Regenerating node_modules
This commit is contained in:
parent
09b4a82c83
commit
c96f84308a
5488 changed files with 487362 additions and 60779 deletions
23
node_modules/object.assign/node_modules/es-abstract/2017/UTF16Encoding.js
generated
vendored
Normal file
23
node_modules/object.assign/node_modules/es-abstract/2017/UTF16Encoding.js
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
'use strict';
|
||||
|
||||
var GetIntrinsic = require('../GetIntrinsic');
|
||||
|
||||
var $TypeError = GetIntrinsic('%TypeError%');
|
||||
var $fromCharCode = GetIntrinsic('%String.fromCharCode%');
|
||||
|
||||
var floor = require('./floor');
|
||||
var modulo = require('./modulo');
|
||||
|
||||
// https://ecma-international.org/ecma-262/7.0/#sec-utf16encoding
|
||||
|
||||
module.exports = function UTF16Encoding(cp) {
|
||||
if (typeof cp !== 'number' || cp < 0 || cp > 0x10FFFF) {
|
||||
throw new $TypeError('Assertion failed: `cp` must be >= 0 and <= 0x10FFFF');
|
||||
}
|
||||
if (cp <= 65535) {
|
||||
return cp;
|
||||
}
|
||||
var cu1 = floor((cp - 65536) / 1024) + 0xD800;
|
||||
var cu2 = modulo(cp - 65536, 1024) + 0xDC00;
|
||||
return $fromCharCode(cu1) + $fromCharCode(cu2);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue