Skip to content

takeWhile

Subhajit Sahu edited this page Jun 16, 2020 · 15 revisions

Extracts values from left, while a test passes. 🏃 📼 📦 🌔 📒

Alternatives: take, takeRight, takeWhile, takeWhileRight.
Similar: take, drop.

iterable.takeWhile(x, fn);
// x:  an iterable
// fn: test function (v, i, x)
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 ]

references

Clone this wiki locally