Skip to content

blakeembrey/array-flatten

Repository files navigation

Array Flatten

NPM version NPM downloads Build status Test coverage Bundle size

Flatten nested arrays.

🚨 Notice: Code using node.js >= 11 should use the native Array.flat() method instead. 🚨

Installation

npm install array-flatten --save

Usage

import { flatten } from "array-flatten";

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

(function() {
  flatten(arguments); //=> [1, 2, 3]
})(1, [2, 3]);

License

MIT