Skip to content

Instantly share code, notes, and snippets.

@matteoterrinoni
Created July 31, 2018 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matteoterrinoni/05d225170a32a1365e592a7d70e25a33 to your computer and use it in GitHub Desktop.
Save matteoterrinoni/05d225170a32a1365e592a7d70e25a33 to your computer and use it in GitHub Desktop.
const flatter = (arr) =>
Array.isArray(arr) && [].concat(...arr.map(a=>flatter(a))) || +arr
export default flatter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment