dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/find-index/last.js
Cyryl Płotnicki 2f946d6200 Add .vscode
2016-09-11 10:29:13 +02:00

27 lines
530 B
JavaScript

function findLastIndex(array, predicate, self) {
var len = array.length;
var i;
if (len === 0) return -1;
if (typeof predicate !== 'function') {
throw new TypeError(predicate + ' must be a function');
}
if (self) {
for (i = len - 1; i >= 0; i--) {
if (predicate.call(self, array[i], i, array)) {
return i;
}
}
} else {
for (i = len - 1; i >= 0; i--) {
if (predicate(array[i], i, array)) {
return i;
}
}
}
return -1;
}
module.exports = findLastIndex