2022-01-21 08:28:41 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var indexOf = String.prototype.indexOf;
|
|
|
|
|
2022-03-14 15:40:45 +00:00
|
|
|
module.exports = function (searchString /*, position*/) {
|
2022-01-21 08:28:41 +00:00
|
|
|
return indexOf.call(this, searchString, arguments[1]) > -1;
|
|
|
|
};
|