| 11 | // readable half so the fake bucket can assert that share() passed a |
| 12 | // known-length stream to R2. |
| 13 | class TestFixedLengthStream extends TransformStream<ArrayBuffer | ArrayBufferView, Uint8Array> { |
| 14 | constructor(expectedLength: number | bigint) { |
| 15 | super(); |
| 16 | fixedLengthReads.set(this.readable, Number(expectedLength)); |
nothing calls this directly
no outgoing calls
no test coverage detected