Skip to content

Instantly share code, notes, and snippets.

@cwharris
Created May 2, 2013 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwharris/5504195 to your computer and use it in GitHub Desktop.
Save cwharris/5504195 to your computer and use it in GitHub Desktop.
OH LOOK IT IS GOOD FRIEND FLAT MAP COME TO SAVE US ALL FROM DOOM.
function flatMap (array, func) {
return Array.prototype.concat.apply([], array.map(func));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment