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.32 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.31 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.30 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.29 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.28 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.27 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.26 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.25 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.24 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.23 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.22 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.21 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.20 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.19 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.18 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.17 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.16 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.14 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.13 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js
immosquare-cleaner-0.1.12 node_modules/es-abstract/2022/IsStringWellFormedUnicode.js