Skip to content

Instantly share code, notes, and snippets.

@krishna2nd
Created December 25, 2016 17:36
Show Gist options
  • Save krishna2nd/2fc6ec89771547aa689f898a6c4f9889 to your computer and use it in GitHub Desktop.
Save krishna2nd/2fc6ec89771547aa689f898a6c4f9889 to your computer and use it in GitHub Desktop.
function arrFlatern(inArray) {
return inArray.reduce(function (_in, to) {
return _in.concat(Array.isArray(to) ? arrFlatern(to) : to);
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment