1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +00:00
Files
mywebsite/node_modules/es5-ext/array/#/find/shim.js

9 lines
216 B
JavaScript

'use strict';
var findIndex = require('../find-index/shim');
module.exports = function (predicate/*, thisArg*/) {
var index = findIndex.apply(this, arguments);
return (index === -1) ? undefined : this[index];
};