(source)
| 75695 | function ensureNodeStream(stream4) { |
| 75696 | if (stream4 instanceof ReadableStream) { |
| 75697 | makeAsyncIterable(stream4); |
| 75698 | return import_node_stream2.Readable.fromWeb(stream4); |
| 75699 | } else { |
| 75700 | return stream4; |
| 75701 | } |
| 75702 | } |
| 75703 | function toStream(source) { |
| 75704 | if (source instanceof Uint8Array) { |
| 75705 | return import_node_stream2.Readable.from(Buffer.from(source)); |
| 75706 | } else if (isBlob3(source)) { |
| 75707 | return toStream(getRawContent(source)); |
| 75708 | } else { |
nothing calls this directly
no test coverage detected
searching dependent graphs…