Created
May 30, 2016 13:55
-
-
Save simonkberg/46fccc0236044ab752b5d2dd412b251f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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