Skip to content

Instantly share code, notes, and snippets.

@congwenma
Last active May 12, 2016 19:35
Show Gist options
  • Save congwenma/a418d06681682c0653fcf05ae58eb02f to your computer and use it in GitHub Desktop.
Save congwenma/a418d06681682c0653fcf05ae58eb02f to your computer and use it in GitHub Desktop.
Array.prototype.flatMap = function(lambda) {
return Array.prototype.concat.apply([], this.map(lambda));
};
Transis && (Transis.Array.prototype.flatMap = function(lambda) {
return Array.prototype.concat.apply([], this.map(lambda));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment