(startAlgorithm, pullAlgorithm, cancelAlgorithm, highWaterMark = 1, sizeAlgorithm = () => 1)
| 14096 | configurable: true |
| 14097 | }); |
| 14098 | function CreateReadableStream(startAlgorithm, pullAlgorithm, cancelAlgorithm, highWaterMark = 1, sizeAlgorithm = () => 1) { |
| 14099 | const stream4 = Object.create(ReadableStream7.prototype); |
| 14100 | InitializeReadableStream(stream4); |
| 14101 | const controller = Object.create(ReadableStreamDefaultController2.prototype); |
| 14102 | SetUpReadableStreamDefaultController(stream4, controller, startAlgorithm, pullAlgorithm, cancelAlgorithm, highWaterMark, sizeAlgorithm); |
| 14103 | return stream4; |
| 14104 | } |
| 14105 | function CreateReadableByteStream(startAlgorithm, pullAlgorithm, cancelAlgorithm) { |
| 14106 | const stream4 = Object.create(ReadableStream7.prototype); |
| 14107 | InitializeReadableStream(stream4); |
no test coverage detected
searching dependent graphs…