UNPKG

@extra-array/search-right

Version:

Finds index of last value passing a test.

8 lines (7 loc) 176 B
function searchRight(x, ft) { for (var i = x.length - 1; i >= 0; i--) if (ft(x[i], i, x)) return i; return -1; } export { searchRight as default };