-
Notifications
You must be signed in to change notification settings - Fork 5
takeWhileRight
Subhajit Sahu edited this page Jun 20, 2020
·
12 revisions
Keeps values from right, while a test passes. 🏃 📼 📦 🌔 📒
Alternatives: take, takeRight, takeWhile, takeWhileRight.
Similar: take, drop.
iterable.takeWhileRight(x, ft);
// x: an iterable
// ft: test function (v, i, x)
const array = require('extra-array');
var x = [1, 2, 3, 4, 5];
array.takeWhileRight(x, v => v >= 3);
// [ 3, 4, 5 ]
array.takeWhileRight(x, v => v >= 4);
// [ 4, 5 ]