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.
19 lines
595 B
19 lines
595 B
"use strict";
|
|
|
|
var toInteger = require("../../../number/to-integer")
|
|
, value = require("../../../object/valid-value")
|
|
, isValue = require("../../../object/is-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 =
|
|
(isValue(endPos) ? min(max(toInteger(endPos), 0), self.length) : self.length) -
|
|
searchString.length;
|
|
return start < 0 ? false : self.indexOf(searchString, start) === start;
|
|
};
|