Current section

Files

Jump to
udia assets node_modules mout array findLast.js
Raw

assets/node_modules/mout/array/findLast.js

var findLastIndex = require('./findLastIndex');
/**
* Returns last item that matches criteria
*/
function findLast(arr, iterator, thisObj){
var idx = findLastIndex(arr, iterator, thisObj);
return idx >= 0? arr[idx] : void(0);
}
module.exports = findLast;