MCPcopy Create free account
hub / github.com/MathMan05/Fermi / read16

Method read16

src/webpage/utils/binaryUtils.ts:7–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5 this.view = new DataView(buffer, 0);
6 }
7 read16() {
8 const int = this.view.getUint16(this.i);
9 this.i += 2;
10 return int;
11 }
12 read8() {
13 const int = this.view.getUint8(this.i);
14 this.i += 1;

Callers 6

decodeEmojiListMethod · 0.95
readString16Method · 0.95
readAsciiString16Method · 0.95
parseBinMethod · 0.95
parseMethod · 0.80
parseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected