Projekt

Obecné

Profil

Stáhnout (306 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
var $strSlice = require('../helpers/callBound')('String.prototype.slice');
4

    
5
module.exports = function isPrefixOf(prefix, string) {
6
	if (prefix === string) {
7
		return true;
8
	}
9
	if (prefix.length > string.length) {
10
		return false;
11
	}
12
	return $strSlice(string, 0, prefix.length) === prefix;
13
};
(16-16/26)