Urara-Blog/node_modules/.pnpm-store/v3/files/3b/9a3f7ecb55bd7c107ec3a318e17735d71f71f26fc6f438143ebaa8514872a3e60476e1f3bf4e900a93bbe9823dbfefe6880973ed62876557634e687127fc94
2022-08-14 01:14:53 +08:00

47 lines
940 B
Text

'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;
*/
};