-
Notifications
You must be signed in to change notification settings - Fork 1
takeWhile
Subhajit Sahu edited this page May 17, 2020
·
15 revisions
Extracts values till a test passes. 🏃 [:vhs:] 📦 🌔 📒
iterable.takeWhile(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.takeWhile(x, v => v < 3)];
// [ 1, 2 ]
[...iterable.takeWhile(x, v => v < 4)];
// [ 1, 2, 3 ]