Files
Media-Coding-Web/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js
2026-04-04 12:49:09 +08: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();
}