findLast.js 301 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 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;