Files
claude_code_src/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js
jiancheng 8776fff897 init
Signed-off-by: jiancheng <1729303158@qq.com>
2026-03-31 21:14:17 +08:00

11 lines
306 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.splitStream = splitStream;
async function splitStream(stream) {
if (typeof stream.stream === "function") {
stream = stream.stream();
}
const readableStream = stream;
return readableStream.tee();
}