(byteOffset: number)
| 412 | constructor(public bytes: Uint8Array) {} |
| 413 | |
| 414 | seekToByte(byteOffset: number) { |
| 415 | this.pos = 8 * byteOffset; |
| 416 | } |
| 417 | |
| 418 | private readBit() { |
| 419 | const byteIndex = Math.floor(this.pos / 8); |
nothing calls this directly
no outgoing calls
no test coverage detected