-
Notifications
You must be signed in to change notification settings - Fork 1
dropWhileRight
Subhajit Sahu edited this page Jun 15, 2020
·
12 revisions
Drops values till a test passes. 🏃 📼 📦 🌔 📒
iterable.dropWhile(x, fn, [ths]);
// x: an iterable
// fn: test function (v, i, x)
// ths: this argument
const iterable = require('extra-iterable');
var x = [1, 2, 3, 4, 5];
[...iterable.dropWhile(x, v => v < 3)];
// [ 3, 4, 5 ]
[...iterable.dropWhile(x, v => v < 4)];
// [ 4, 5 ]