1 var makeIterator = require('../function/makeIterator_');
4 * Returns the index of the last item that matches criteria
6 function findLastIndex(arr, iterator, thisObj){
7 iterator = makeIterator(iterator, thisObj);
14 if (iterator(arr[n], n, arr)) {
22 module.exports = findLastIndex;