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