An open API service indexing awesome lists of open source software.

https://github.com/sourcevault/flyd-until

until utility function for flyd
https://github.com/sourcevault/flyd-until

flyd livescript

Last synced: 23 days ago
JSON representation

until utility function for flyd

Awesome Lists containing this project

README

          

# ```flyd-until```

[![Build Status](https://travis-ci.org/sourcevault/flyd-until.svg?branch=dev)](https://travis-ci.org/sourcevault/flyd-until)

```
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 ..*

```js

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](https://github.com/sourcevault/flyd-group-within/blob/dist/LICENCE) for details.