You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't looked into the implementation of merge2 yet but wondered whether it would be possible to accept a function (() => Stream), allowing streams to be lazy, e.g.
constpipeline1=()=>readable1.pipe(transform1);// Lazyconstpipeline2=()=>readable2.pipe(transform2);// Lazymerge(pipeline1,pipeline2).pipe(writable);// `readable2` is not read from until `pipeline1` is finished
The text was updated successfully, but these errors were encountered:
I haven't looked into the implementation of
merge2
yet but wondered whether it would be possible to accept a function (() => Stream
), allowing streams to be lazy, e.g.The text was updated successfully, but these errors were encountered: