callbag-remember
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

callbag-remember

Callbag operator which shares input stream between subscribers and emits last emitted value upon subscription. It behaves pretty much as Rx's .shareReplay(1).

Example

import fromEvent from 'callbag-from-event'
import forEach from 'callbag-for-each'
import map from 'callbag-map'
import merge from 'callbag-merge'
import pipe from 'callbag-pipe'
import remember from 'callbag-remember'

const focus$ = remember(
  merge(
    map(() => false)(fromEvent(window, 'blur')),
    map(() => true)(fromEvent(window, 'focus')),
  ),
)

pipe(
  focus$,
  forEach(tabFocused => {
    // ...
  }),
)

// ...

setTimeout(() => {
  pipe(
    focus$,
    forEach(tabFocused => {
      // ... will get last emitted value immediately
    }),
  )
}, 1000)

Package Sidebar

Install

npm i callbag-remember

Weekly Downloads

129

Version

2.0.0

License

MIT

Unpacked Size

6.88 kB

Total Files

7

Last publish

Collaborators

  • andarist