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 would like it if Oboe implemented WritableStream too.
Instead of oboe(readableStream.pipe(something).pipe(somethingElse)).on('done', (json) => …);
We could have readableStream.pipe(something).pipe(somethingElse).pipe(oboe()).on('finish', (json) => …);
It would fit into the left-to-right reading of data pipelining, and use the standard Writable event names.
The text was updated successfully, but these errors were encountered:
I would like it if Oboe implemented WritableStream too.
Instead of
oboe(readableStream.pipe(something).pipe(somethingElse)).on('done', (json) => …);
We could have
readableStream.pipe(something).pipe(somethingElse).pipe(oboe()).on('finish', (json) => …);
It would fit into the left-to-right reading of data pipelining, and use the standard Writable event names.
The text was updated successfully, but these errors were encountered: