Creates a third observable that will be releasing values of those of the source and an observable provided as an argument.
import { of, merge } from '@hullo/core';const a = of([1,2]);const b = of([3,4]);const c = a.pipe(merge(b));c.subscribe({ next(v) { console.log(v) } });// prints:// 1// 3// 2// 4