mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
9 lines
216 B
JavaScript
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];
|
|
};
|