mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 15:39:31 +08:00
13 lines
305 B
Text
13 lines
305 B
Text
'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;
|
|
};
|