Skip to content

Instantly share code, notes, and snippets.

@nickmcdonnough
Created February 22, 2015 02:42
Show Gist options
  • Save nickmcdonnough/42a2fae354dcd5367059 to your computer and use it in GitHub Desktop.
Save nickmcdonnough/42a2fae354dcd5367059 to your computer and use it in GitHub Desktop.
flatten
Array.prototype.flatten = function () {
return this.reduce(function (a, b) {
if (Array.isArray(a)) {
return a.concat(b);
} else {
return [a].concat(b)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment