-
-
Save shoebsd31/9a819744b3fa442fc31f87cf68adcc53 to your computer and use it in GitHub Desktop.
Javascript flatMap implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [B](f: (A) ⇒ [B]): [B] ; Although the types in the arrays aren't strict (: | |
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