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

Method readAsciiStringNo

src/webpage/utils/binaryUtils.ts:42–49  ·  view source on GitHub ↗
(length: number)

Source from the content-addressed store, hash-verified

40 return this.readAsciiStringNo(this.read16());
41 }
42 readAsciiStringNo(length: number) {
43 let build = "";
44 for (let i = 0; i < length; i++) {
45 build += String.fromCharCode(this.read8());
46 }
47 //console.log(array);
48 return build;
49 }
50}
51
52class BinWrite {

Callers 3

readAsciiString8Method · 0.95
readAsciiString16Method · 0.95
parseBinMethod · 0.95

Calls 1

read8Method · 0.95

Tested by

no test coverage detected