Sha256: dd8632d21f24f7eae2dd01011ea2bceadb094dd69ee40500b73860a01ba05e78

Contents?: true

Size: 517 Bytes

Versions: 62

Compression:

Stored size: 517 Bytes

Contents

var makeIterator = require('../function/makeIterator_');

    /**
     * Returns the index of the last item that matches criteria
     */
    function findLastIndex(arr, iterator, thisObj){
        iterator = makeIterator(iterator, thisObj);
        if (arr == null) {
            return -1;
        }

        var n = arr.length;
        while (--n >= 0) {
            if (iterator(arr[n], n, arr)) {
                return n;
            }
        }

        return -1;
    }

    module.exports = findLastIndex;


Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
trusty-festivity-extension-2.3.1 node_modules/bower/node_modules/mout/array/findLastIndex.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/mout/array/findLastIndex.js