flyd-sampleon

sampleOn for Flyd.

Usage no npm install needed!

<script type="module">
  import flydSampleon from 'https://cdn.skypack.dev/flyd-sampleon';
</script>

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

// 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);