File size: 286 Bytes
1307964
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
if (!Array.prototype.findLastIndex) {
    Array.prototype.findLastIndex = function (callback, thisArg) {
        for (let i = this.length - 1; i >= 0; i--) {
            if (callback.call(thisArg, this[i], i, this)) return i;
        }
        return -1;
    };
}

module.exports = {};