We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Discard values from right, while a test passes.
Alternatives: drop, dropRight, dropWhile, dropWhileRight. Similar: take, drop.
function dropWhileRight(x, ft) // x: an array // ft: test function (v, i, x)
const xarray = require('extra-array'); var x = [1, 2, 3, 4, 5]; xarray.dropWhileRight(x, v => v >= 3); // → [ 1, 2 ] xarray.dropWhileRight(x, v => v >= 4); // → [ 1, 2, 3 ]