Skip to content

Instantly share code, notes, and snippets.

@asvny
Created August 7, 2015 14:44
Show Gist options
  • Save asvny/3a50351390be5ac60ac6 to your computer and use it in GitHub Desktop.
Save asvny/3a50351390be5ac60ac6 to your computer and use it in GitHub Desktop.
function flatten(a) {
return Array.isArray(a) ? [].concat.apply([], a.map(flatten)) : [a];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment