Skip to content

dropWhile

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

Drops values, while a test passes. 🏃 📼 📦 🌔 📒

Alternatives: drop, dropWhile.
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 ]

references

Clone this wiki locally