mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-11 00:28:35 -05:00
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
"use strict";
|
|
|
|
var indexOf = String.prototype.indexOf;
|
|
|
|
module.exports = function (searchString/*, position*/) {
|
|
return indexOf.call(this, searchString, arguments[1]) > -1;
|
|
};
|