(bytes: Uint8ClampedArray)
| 6 | private bitOffset: number = 0; |
| 7 | |
| 8 | constructor(bytes: Uint8ClampedArray) { |
| 9 | this.bytes = bytes; |
| 10 | } |
| 11 | |
| 12 | public readBits(numBits: number): number { |
| 13 | if (numBits < 1 || numBits > 32 || numBits > this.available()) { |
nothing calls this directly
no outgoing calls
no test coverage detected