1.0.3 • Published 6 years ago

callbag-merge-with v1.0.3

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

callbag-merge-with

Callbag operator version of callback-merge. Useful for example when you want to merge the current source with other(s) in the middle of a pipe.

npm install callbag-merge-with

example

const fromEvent = require('callbag-from-event');
const pipe = require('callbag-pipe');
const filter = require('callbag-filter');
const mergeWith = require('callbag-merge-with');
const mapTo = require('callbag-map-to');

const submitActions = pipe(
  fromEvent(inputNode, 'keyup'),
  filter(e => e.key === 'Enter'),
  mergeWith(fromEvent(submitBtn, 'click')),
  mapTo({type: 'submit'})
);
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago