2022-01-21 08:28:41 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var indexOf = require("./e-index-of");
|
|
|
|
|
2022-03-14 15:40:45 +00:00
|
|
|
module.exports = function (searchElement /*, position*/) {
|
2022-01-21 08:28:41 +00:00
|
|
|
return indexOf.call(this, searchElement, arguments[1]) > -1;
|
|
|
|
};
|