npm install utils-flattenFlattens an array.
$ npm install utils-flatten
``javascript
var arr = ['one', ['two', ['three', 'four'], 'five']];
flatten(arr);
// => ['one', 'two', 'three', 'four', 'five']
``
$ npm install
$ npm test

Copyright (c) 2013 Jared Hanson <http://jaredhanson.net/>