blob: 48bfac1e309e6730d27e0e68c53695c6cf96d48b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
'use strict';
var GetIntrinsic = require('../GetIntrinsic');
var $TypeError = GetIntrinsic('%TypeError%');
var callBound = require('../helpers/callBound');
var $push = callBound('Array.prototype.push');
var CodePointAt = require('./CodePointAt');
var Type = require('./Type');
// https://tc39.es/ecma262/2020/#sec-utf16decodestring
module.exports = function UTF16DecodeString(string) {
if (Type(string) !== 'String') {
throw new $TypeError('Assertion failed: `string` must be a String');
}
var codePoints = [];
var size = string.length;
var position = 0;
while (position < size) {
var cp = CodePointAt(string, position);
$push(codePoints, cp['[[CodePoint]]']);
position += cp['[[CodeUnitCount]]'];
}
return codePoints;
};
|