Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
22
install/config-ui/node_modules/es-abstract/2024/StringToCodePoints.js
generated
vendored
Normal file
22
install/config-ui/node_modules/es-abstract/2024/StringToCodePoints.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
var $TypeError = require('es-errors/type');
|
||||
|
||||
var CodePointAt = require('./CodePointAt');
|
||||
|
||||
// https://262.ecma-international.org/12.0/#sec-stringtocodepoints
|
||||
|
||||
module.exports = function StringToCodePoints(string) {
|
||||
if (typeof 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);
|
||||
codePoints[codePoints.length] = cp['[[CodePoint]]'];
|
||||
position += cp['[[CodeUnitCount]]'];
|
||||
}
|
||||
return codePoints;
|
||||
};
|
||||
Reference in New Issue
Block a user