| 24 | * The buffer must remain valid and unmodified for the reader's lifetime. |
| 25 | */ |
| 26 | export class BinaryReader { |
| 27 | private readonly bytes: Uint8Array; |
| 28 | private readonly dv: DataView; |
| 29 | private off = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected