1.2.0 • Published 5 years ago

callbag-concat-with v1.2.0

Weekly downloads
3,488
License
MIT
Repository
github
Last release
5 years ago

callbag-concat-with

Callbag operator that emits items given it as arguments after it finishes emitting items emitted by source.

Example

import concatWith from 'callbag-concat-with'
import forEach from 'callbag-for-each'
import fromIter from 'callbag-from-iter'
import pipe from 'callbag-pipe'

pipe(
  fromIter([1, 2, 3]),
  concatWith(4, 5, 6),
  forEach(value => {
    console.log(value) // 1, 2, 3, 4, 5, 6
  }),
)
1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

6 years ago

1.0.0

6 years ago