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

Method write8

src/webpage/utils/binaryUtils.ts:68–71  ·  view source on GitHub ↗
(numb: number)

Source from the content-addressed store, hash-verified

66 this.i += 2;
67 }
68 write8(numb: number) {
69 this.view.setUint8(this.i, numb);
70 this.i += 1;
71 }
72 writeString8(str: string) {
73 const encode = new TextEncoder().encode(str);
74 this.write8(encode.length);

Callers 4

writeString8Method · 0.95
writeString16Method · 0.95
writeStringNoMethod · 0.95
page.tsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected