main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
305 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var $strSlice = require('call-bind/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 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.