Skip to content

Instantly share code, notes, and snippets.

@yelouafi
Created July 17, 2015 02:05
Show Gist options
  • Save yelouafi/31fe15d2e8df5463a062 to your computer and use it in GitHub Desktop.
Save yelouafi/31fe15d2e8df5463a062 to your computer and use it in GitHub Desktop.
// group : Stream a => Stream (Stream a)
Stream.prototype.group = function() {
return this.groupBy( (x1, x2) => x1 === x2 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment