UNPKG

@extra-array/scan-while-right

Version:

Scans from right, while a test passes.

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