merge completed... now to fix all the bugs...

This commit is contained in:
howlingsails 2021-12-12 23:02:38 -08:00
commit 87c4d80fbc
3472 changed files with 466748 additions and 6517 deletions

25
node_modules/es-abstract/2021/UTF16EncodeCodePoint.js generated vendored Normal file
View file

@ -0,0 +1,25 @@
'use strict';
var GetIntrinsic = require('get-intrinsic');
var $TypeError = GetIntrinsic('%TypeError%');
var $fromCharCode = GetIntrinsic('%String.fromCharCode%');
var floor = require('./floor');
var modulo = require('./modulo');
var isCodePoint = require('../helpers/isCodePoint');
// https://ecma-international.org/ecma-262/12.0/#sec-utf16encoding
module.exports = function UTF16EncodeCodePoint(cp) {
if (!isCodePoint(cp)) {
throw new $TypeError('Assertion failed: `cp` must be >= 0 and <= 0x10FFFF');
}
if (cp <= 65535) {
return $fromCharCode(cp);
}
var cu1 = $fromCharCode(floor((cp - 65536) / 1024) + 0xD800);
var cu2 = $fromCharCode(modulo(cp - 65536, 1024) + 0xDC00);
return cu1 + cu2;
};