-
Notifications
You must be signed in to change notification settings - Fork 1
dropWhile
Subhajit Sahu edited this page Jun 15, 2020
·
17 revisions
Drops values, while a test passes. 🏃 📼 📦 🌔 📒
Alternatives: drop, dropRight, dropWhile, dropWhileRight.
Similar: take, drop.
iterable.dropWhile(x, fn);
// x: an iterable
// fn: test function (v, i, x)
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 ]