The lift
method on each source hides away the internals of RxJS so you can simply connect a source
to the subscriber
you're working with. The lift
method take an object with a call
function with subscriber
and source
arguments, then it's up to you how you want to connect them together.
chall(sub, source) should be call(sub,source) right?
Yep.