Pipe archive #206
Unanswered
florianbepunkt
asked this question in
Q&A
Replies: 1 comment
-
You can write to the next stream in the chain manually. For Node.js: zip.ondata = (err, chunk, final) => {
if (err) writable.destroy(err);
else {
writable.write(chunk);
if (final) writable.end();
}
} For the WHATWG web streams API, have a look at this guide; midway through is an example to convert an |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given the following example
How can I pipe the
zip
stream into the next step of my pipeline? It does not conform to a duplex stream interface.Beta Was this translation helpful? Give feedback.
All reactions