()
| 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; |
no test coverage detected