1.0.0 • Published 7 years ago

most-combineobj v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

most-combineobj

Combine Objects of Streams

This is helpful library for combining an object of streams, into a single stream containing an object of values.

Let me have it!

npm install --save most-combineobj

API

####combineObj (objectOfStreams): Stream

const obj = {
  a: just(1),
  b: just(2),
  c: just(3),
};

combineObj(obj).observe(({ a, b, c }) => {
  console.log(a, b, c) // 1 2 3
});