npm install flatten-arrayA simple module that deeply flattens a given Array
In your npm supported project, run:
``shell`
$ npm install flatten-array --save
Include the module in your desired file:
``
var flattenArray = require("flatten-array");
Flattens an array deeply:
`javascript`
flattenArray([1, [2, 3, [4, 5]]]); // => [1, 2, 3, 4, 5]
* Increment the "version" attribute of package.json`
* Commit with the message "Release version x.x.x"
* Create version tag in git
* Create a github release
* Release on npm