Files
SerpentRace/SerpentRace_Backend/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js
T
2025-07-11 19:56:28 +02:00

8 lines
201 B
JavaScript

export async function splitStream(stream) {
if (typeof stream.stream === "function") {
stream = stream.stream();
}
const readableStream = stream;
return readableStream.tee();
}