Sha256: 9eb0f4ccb63d074f4ff299f92db9a4b4b821d69d865784956e0a0ddc627aa5fa

Contents?: true

Size: 940 Bytes

Versions: 120

Compression:

Stored size: 940 Bytes

Contents

'use strict';

var GetIntrinsic = require('get-intrinsic');

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

var isPrefixOf = require('../helpers/isPrefixOf');

// var callBound = require('call-bind/callBound');

// var $charAt = callBound('String.prototype.charAt');

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

// https://262.ecma-international.org/9.0/#sec-isstringprefix

module.exports = function IsStringPrefix(p, q) {
	if (Type(p) !== 'String') {
		throw new $TypeError('Assertion failed: "p" must be a String');
	}

	if (Type(q) !== 'String') {
		throw new $TypeError('Assertion failed: "q" must be a String');
	}

	return isPrefixOf(p, q);
	/*
	if (p === q || p === '') {
		return true;
	}

	var pLength = p.length;
	var qLength = q.length;
	if (pLength >= qLength) {
		return false;
	}

	// assert: pLength < qLength

	for (var i = 0; i < pLength; i += 1) {
		if ($charAt(p, i) !== $charAt(q, i)) {
			return false;
		}
	}
	return true;
	*/
};

Version data entries

120 entries across 30 versions & 4 rubygems

Version Path
immosquare-cleaner-0.1.32 node_modules/es-abstract/2019/IsStringPrefix.js
immosquare-cleaner-0.1.32 node_modules/es-abstract/2021/IsStringPrefix.js
immosquare-cleaner-0.1.32 node_modules/es-abstract/2018/IsStringPrefix.js
immosquare-cleaner-0.1.32 node_modules/es-abstract/2020/IsStringPrefix.js
immosquare-cleaner-0.1.31 node_modules/es-abstract/2020/IsStringPrefix.js
immosquare-cleaner-0.1.31 node_modules/es-abstract/2019/IsStringPrefix.js
immosquare-cleaner-0.1.31 node_modules/es-abstract/2021/IsStringPrefix.js
immosquare-cleaner-0.1.31 node_modules/es-abstract/2018/IsStringPrefix.js
immosquare-cleaner-0.1.30 node_modules/es-abstract/2020/IsStringPrefix.js
immosquare-cleaner-0.1.30 node_modules/es-abstract/2018/IsStringPrefix.js
immosquare-cleaner-0.1.30 node_modules/es-abstract/2019/IsStringPrefix.js
immosquare-cleaner-0.1.30 node_modules/es-abstract/2021/IsStringPrefix.js
immosquare-cleaner-0.1.29 node_modules/es-abstract/2018/IsStringPrefix.js
immosquare-cleaner-0.1.29 node_modules/es-abstract/2019/IsStringPrefix.js
immosquare-cleaner-0.1.29 node_modules/es-abstract/2020/IsStringPrefix.js
immosquare-cleaner-0.1.29 node_modules/es-abstract/2021/IsStringPrefix.js
immosquare-cleaner-0.1.28 node_modules/es-abstract/2019/IsStringPrefix.js
immosquare-cleaner-0.1.28 node_modules/es-abstract/2020/IsStringPrefix.js
immosquare-cleaner-0.1.28 node_modules/es-abstract/2021/IsStringPrefix.js
immosquare-cleaner-0.1.28 node_modules/es-abstract/2018/IsStringPrefix.js