Skip to content

Instantly share code, notes, and snippets.

@yelouafi
Created July 17, 2015 02:45
Show Gist options
  • Save yelouafi/ed742f251160b101b911 to your computer and use it in GitHub Desktop.
Save yelouafi/ed742f251160b101b911 to your computer and use it in GitHub Desktop.
// concatAll : Stream (Stream a) -> Stream a
Stream.prototype.concatAll = function() {
return this.flatten( (s1, s2) => s1.concat(s2) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment