wishthis/node_modules/es5-ext/string/#/contains/shim.js

8 lines
178 B
JavaScript
Raw Normal View History

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;
};