How to fork a readable stream #16067
Answered
by
zachauten
kunalgoyal9
asked this question in
Q&A
-
I need something like this
|
Beta Was this translation helpful? Give feedback.
Answered by
zachauten
Sep 28, 2022
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kitsonk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Deno.Reader
isn't aReadableStream
, but you can convert it with readableStreamFromReader from the std lib. Then you can use ReadableStream.tee to read from it twice.