Current File : //usr/lib/node_modules/bower/lib/node_modules/mout/src/array/findLast.js
define(['./findLastIndex'], function (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);
    }

    return findLast;

});