blob: de2483dd057f665e829bc1992f9cbd2ddbf04d33 [file] [log] [blame]
"use strict";
var indexOf = String.prototype.indexOf;
module.exports = function (searchString /*, position*/) {
return indexOf.call(this, searchString, arguments[1]) > -1;
};