Skip to content

Instantly share code, notes, and snippets.

@ColinFendrick
Created September 21, 2017 13:42
Show Gist options
  • Save ColinFendrick/f0367fd32d9220fd64d6ffa33d05f31d to your computer and use it in GitHub Desktop.
Save ColinFendrick/f0367fd32d9220fd64d6ffa33d05f31d to your computer and use it in GitHub Desktop.
const flatten = (arr) => {
  return arr.reduce((flattenedArray, toFlatten) => {
    return flattenedArray.concat(Array.isArray(toFlatten) ? flatten(toFlatten) : toFlatten)
  }, []);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment