UNPKG

@extra-array/search-right

Version:

Finds index of last value passing a test.

9 lines (8 loc) 185 B
'use strict'; function searchRight(x, ft) { for (var i = x.length - 1; i >= 0; i--) if (ft(x[i], i, x)) return i; return -1; } module.exports = searchRight;