| 66 | * ``` |
| 67 | */ |
| 68 | export class Buffer { |
| 69 | #buf: Uint8Array; // contents are the bytes buf[off : len(buf)] |
| 70 | #off = 0; // read at buf[off], write at buf[buf.byteLength] |
| 71 | #readable: ReadableStream<Uint8Array> = new ReadableStream({ |
nothing calls this directly
no outgoing calls
no test coverage detected