1.0.1 • Published 8 years ago

flatten-util v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Flatten arrays

This library helps you to flatten nested arrays into a single level array.

Installation

$ npm install flatten-util --save

Usage

import flatten from 'flatten-util'

let flattened = flatten([[1,[[2,[[3,4,[5]],6],[7]],8],[9]],[[10,11,[12]],13]])

console.log(flattened) // [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

License

[MIT](LICENSE)