Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/paldepind/flyd-sampleon

sampleOn for Flyd.
https://github.com/paldepind/flyd-sampleon

Last synced: 15 days ago
JSON representation

sampleOn for Flyd.

Awesome Lists containing this project

README

        

# flyd-sampleon
sampleOn for Flyd.

Samples from the second stream every time an event occurs on the first
stream.

__Signature__

`Stream a -> Stream b -> Stream b`

__Usage__

```javascript
// Assume `sendBtnClicked` emits whenever a send button is pressed and
// `messageText` is a stream of the current content of an input field.
// Then `sendMessage` emits the content of the text field whenever the button
// is pressed.
var sendMessage = sampleOn(sendBtnClicked, messageText);
```