UNPKG

282 BJavaScriptView Raw
1var findIndex = require('./findIndex');
2
3 /**
4 * Returns first item that matches criteria
5 */
6 function find(arr, iterator, thisObj){
7 var idx = findIndex(arr, iterator, thisObj);
8 return idx >= 0? arr[idx] : void(0);
9 }
10
11 module.exports = find;
12
13