Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/es-abstract/helpers/isPrefixOf.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

14 lines
305 B
JavaScript

'use strict';
var $strSlice = require('call-bind/callBound')('String.prototype.slice');
module.exports = function isPrefixOf(prefix, string) {
if (prefix === string) {
return true;
}
if (prefix.length > string.length) {
return false;
}
return $strSlice(string, 0, prefix.length) === prefix;
};