Files
2025-04-21 16:03:20 +02:00

8 lines
177 B
JavaScript
Vendored

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