MCPcopy Create free account
hub / github.com/cozmo/jsQR / constructor

Method constructor

src/decoder/decodeData/BitStream.ts:8–10  ·  view source on GitHub ↗
(bytes: Uint8ClampedArray)

Source from the content-addressed store, hash-verified

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()) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected