Skip to content

Instantly share code, notes, and snippets.

@zazk
Created February 7, 2019 14:20
Show Gist options
  • Select an option

  • Save zazk/c8ec9160303385aa76b96eaec5078d5b to your computer and use it in GitHub Desktop.

Select an option

Save zazk/c8ec9160303385aa76b96eaec5078d5b to your computer and use it in GitHub Desktop.
Flat composed array to a flat one
function flatter( arr ){
return arr.reduce(function (result, el) {
return result.concat(Array.isArray(el) ? flatter(el) : el);
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment