Andarist / callbag-to-promise

πŸ‘œ Callbag operator which converts source to a promise containing last emitted value.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

callbag-to-promise

Callbag operator which converts source to a promise containing last emitted value.

Example

import interval from 'callbag-interval'
import pipe from 'callbag-pipe'
import takeUntil from 'callbag-take-until'
import toPromise from 'callbag-to-promise'

pipe(
  interval(30),
  takeUntil(interval(200)),
  toPromise,
).then(value => {
  console.log(value) // 5
})

About

πŸ‘œ Callbag operator which converts source to a promise containing last emitted value.


Languages

Language:JavaScript 100.0%