Skip to content

Instantly share code, notes, and snippets.

@yelouafi
Created July 17, 2015 02:09
Show Gist options
  • Save yelouafi/65bac7911834a8b5e322 to your computer and use it in GitHub Desktop.
Save yelouafi/65bac7911834a8b5e322 to your computer and use it in GitHub Desktop.
// all : ( Stream a, a -> aBoolean ) -> Promise Boolean
Stream.prototype.all = function(pred) {
return this.reduce( (prev, cur) => prev && !!pred(cur), true );
}
Stream.seq([1,2,3,4,5], 0, 1000).all( x => x % 2) // => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment