Sha256: 789fe255e70648d702fc64c875da1c8650733d6d5396386abd2b3984ddbcae14

Contents?: true

Size: 716 Bytes

Versions: 27

Compression:

Stored size: 716 Bytes

Contents

'use strict';

var GetIntrinsic = require('get-intrinsic');
var CodePointAt = require('./CodePointAt');

var $TypeError = GetIntrinsic('%TypeError%');

var Type = require('./Type');

// https://262.ecma-international.org/13.0/#sec-isstringwellformedunicode

module.exports = function IsStringWellFormedUnicode(string) {
	if (Type(string) !== 'String') {
		throw new $TypeError('Assertion failed: `string` must be a String');
	}
	var strLen = string.length; // step 1
	var k = 0; // step 2
	while (k !== strLen) { // step 3
		var cp = CodePointAt(string, k); // step 3.a
		if (cp['[[IsUnpairedSurrogate]]']) {
			return false; // step 3.b
		}
		k += cp['[[CodeUnitCount]]']; // step 3.c
	}
	return true; // step 4
};

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
immosquare-cleaner-0.1.11 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.10 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.9 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.8 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.7 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.6 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
decidim-0.26.8 packages/eslint-config/node_modules/es-abstract/2022/IsStringWellFormedUnicode.js