-
Notifications
You must be signed in to change notification settings - Fork 1
flat
Subhajit Sahu edited this page Jun 20, 2020
·
23 revisions
Flattens nested iterable to given depth. 🏃 📼 📦 🌔 📒
iterable.flat(x, [n], [fm], [ft]);
// x: a nested iterable
// n: maximum depth (-1 => all)
// fm: map function (v, i, x)
// ft: test function (v, i, x)
const iterable = require('extra-iterable');
var x = [[1, 2], [3, [4, [5]]]];
[...iterable.flat(x)];
// [ 1, 2, 3, 4, 5 ]
[...iterable.flat(x, 1)];
// [ 1, 2, 3, [ 4, [ 5 ] ] ]
[...iterable.flat(x, 2)];
// [ 1, 2, 3, 4, [ 5 ] ]