mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
533 B
17 lines
533 B
10 years ago
|
'use strict';
|
||
|
|
||
|
var toInteger = require('../../../number/to-integer')
|
||
|
, value = require('../../../object/valid-value')
|
||
|
|
||
|
, min = Math.min, max = Math.max;
|
||
|
|
||
|
module.exports = function (searchString/*, endPosition*/) {
|
||
|
var self, start, endPos;
|
||
|
self = String(value(this));
|
||
|
searchString = String(searchString);
|
||
|
endPos = arguments[1];
|
||
|
start = ((endPos == null) ? self.length :
|
||
|
min(max(toInteger(endPos), 0), self.length)) - searchString.length;
|
||
|
return (start < 0) ? false : (self.indexOf(searchString, start) === start);
|
||
|
};
|