(input)
| 50960 | var ReadableStream7 = globalThis.ReadableStream; |
| 50961 | function isReadableStreamLike(stream4) { |
| 50962 | if (!ReadableStream7) { |
| 50963 | ReadableStream7 = require("stream/web").ReadableStream; |
| 50964 | } |
| 50965 | return stream4 instanceof ReadableStream7 || stream4[Symbol.toStringTag] === "ReadableStream" && typeof stream4.tee === "function"; |
| 50966 | } |
| 50967 | var MAXIMUM_ARGUMENT_LENGTH = 65535; |
| 50968 | function isomorphicDecode(input) { |
| 50969 | if (input.length < MAXIMUM_ARGUMENT_LENGTH) { |
| 50970 | return String.fromCharCode(...input); |
no outgoing calls
no test coverage detected
searching dependent graphs…