-
Notifications
You must be signed in to change notification settings - Fork 5
dropWhile
Subhajit Sahu edited this page May 19, 2020
·
16 revisions
Drops values till a test passes. [:running:] [:vhs:] [:package:] [:moon:] [:ledger:]
Alternatives: [take], [takeWhile].
Similar: [take], [drop].
iterable.dropWhile(x, fn, [ths]);
// x: an iterable
// fn: test function (v, i, x)
// ths: this argument
const array = require('extra-array');
var x = [1, 2, 3, 4, 5];
array.dropWhile(x, v => v < 3);
// [ 3, 4, 5 ]
array.dropWhile(x, v => v < 4);
// [ 4, 5 ]