just-flatten-it
TypeScript icon, indicating that this package has built-in type declarations

5.2.0 • Public • Published

just-flatten-it

Part of a library of zero-dependency npm modules that do just do one thing. Guilt-free utilities for every occasion.

🍦 Try it

npm install just-flatten-it
yarn add just-flatten-it

Return a flattened array

import flatten from 'just-flatten-it';

flatten([[1, [2, 3]], [[4, 5], 6, 7, [8, 9]]]);
// [1, 2, 3, 4, 5, 6, 7, 8, 9]

flatten([[1, [2, 3]], [[4, 5], 6, 7, [8, 9]]], 1);
// [1, [2, 3], [[4, 5], 6, 7, [8, 9]]]

/just-flatten-it/

    Package Sidebar

    Install

    npm i just-flatten-it

    Weekly Downloads

    2,906

    Version

    5.2.0

    License

    MIT

    Unpacked Size

    5.53 kB

    Total Files

    9

    Last publish

    Collaborators

    • angus-c