MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / readUint8

Method readUint8

modules/data/wavreader/wavreader.js:109–115  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

107 return result;
108 }
109 readUint8() {
110 let result = this.wav.getUint8(this.position, true);
111 this.position += 1;
112 if (this.position > this.waveSize)
113 throw new Error("eof");
114 return result;
115 }
116 readInt8() {
117 let result = this.wav.getInt8(this.position, true);
118 this.position += 1;

Callers 15

sampleMethod · 0.45
constructorMethod · 0.45
#triggerFeaturesMethod · 0.45
sampleMethod · 0.45
#auxReadUint8Method · 0.45
#auxReadBufferMethod · 0.45
#writeUint8_syncMethod · 0.45
#writeUint16_syncMethod · 0.45
constructorMethod · 0.45
constructorMethod · 0.45
configureMethod · 0.45
statusMethod · 0.45

Calls 1

getUint8Method · 0.80

Tested by

no test coverage detected