Skip to content

Instantly share code, notes, and snippets.

@simonkberg
Created May 30, 2016 13:55
Show Gist options
  • Select an option

  • Save simonkberg/46fccc0236044ab752b5d2dd412b251f to your computer and use it in GitHub Desktop.

Select an option

Save simonkberg/46fccc0236044ab752b5d2dd412b251f to your computer and use it in GitHub Desktop.
export const flatten = list => list.reduce(
(a, b) => a.concat(Array.isArray(b) ? flatten(b) : b), []
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment