0.0.4 • Published 6 years ago

flyd-until v0.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

flyd-until

Build Status

upstream:                     [-a-b-c-d-e------------]
flydUntil(3,stream):          [-.-.-.----------------]
downstream:                     a b c    

install..

npm install flyd-until
npm install sourcevault/flyd-until#dist

simple example ..

var flydUntil = require ("flyd-until") 

var send = flyd.stream()

flydUntil(3,send)
.map (function (x){
   console.log(x); // a b c
})

setTimeout(function(){
	send("a")
	send("b")
	send("c")
	send("d")
	send("e")
},100)

LICENCE

Code and documentation is released under MIT Licence, see LICENSE for details.

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago