flatten-list

0.0.2 • Public • Published

flatten-list

NPM

Build Status Dependency Status

Flatten an array or array-like objects.

Reduces nested arrays or array-like objects (like arguments or NodeList in the browser) to a single array.

Example

var flatten = require('flatten-list');
 
flatten([1, [2, 3]]); // [1, 2, 3]
flatten([1, 2, 3]); // [1, 2, 3]
flatten(1); // [1]
 
function test() {
    return flatten(arguments);
}
 
test(1, [2, 3]); // [1, 2, 3];

Readme

Keywords

none

Package Sidebar

Install

npm i flatten-list

Weekly Downloads

16

Version

0.0.2

License

BSD

Last publish

Collaborators

  • conradz