@extra-array/flat
TypeScript icon, indicating that this package has built-in type declarations

2.10.19 • Public • Published

Flattens nested array to given depth. 📦 😺 🏃 📼 🌔 📜 📰 📘

Alternatives: flat, flatMap.

This is part of package extra-array.


array.flat(x, [n], [fm], [ft]);
// x:  a nested array
// n:  maximum depth (-1 => all)
// fm: map function (v, i, x)
// ft: test function (v, i, x)
const array = require("extra-array");

var x = [[1, 2], [3, [4, [5]]]];
array.flat(x);
// [ 1, 2, 3, 4, 5 ]

array.flat(x, 1);
// [ 1, 2, 3, [ 4, [ 5 ] ] ]

array.flat(x, 2);
// [ 1, 2, 3, 4, [ 5 ] ]


References

/@extra-array/flat/

    Package Sidebar

    Install

    npm i @extra-array/flat

    Weekly Downloads

    6

    Version

    2.10.19

    License

    MIT

    Unpacked Size

    4.91 kB

    Total Files

    8

    Last publish

    Collaborators

    • wolfram77