1.0.0 • Published 6 years ago

callbag-drop-until v1.0.0

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

callbag-drop-until

Drop emitted values from source until provided observable emits.

Example

import dropUntil from 'callbag-drop-until'
import forEach from 'callbag-for-each'
import pipe from 'callbag-pipe'
import timer from 'callbag-timer'

pipe(
  interval(1000),
  dropUntil(timer(6000)),
  forEach(value => {
    // will log 5 6 7 8 ...
    console.log(value)
  }),
)
1.0.0

6 years ago

0.1.0

6 years ago