wishthis/node_modules/es5-ext/array/#/find/shim.js

10 lines
258 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
"use strict";
var findIndex = require("../find-index/shim");
// eslint-disable-next-line no-unused-vars
2022-03-14 15:40:45 +00:00
module.exports = function (predicate /*, thisArg*/) {
2022-01-21 08:28:41 +00:00
var index = findIndex.apply(this, arguments);
return index === -1 ? undefined : this[index];
};