()
| 93 | return result; |
| 94 | } |
| 95 | readUint16() { |
| 96 | let result = this.wav.getUint16(this.position, true); |
| 97 | this.position += 2; |
| 98 | if (this.position > this.waveSize) |
| 99 | throw new Error("eof"); |
| 100 | return result; |
| 101 | } |
| 102 | readInt16() { |
| 103 | let result = this.wav.getInt16(this.position, true); |
| 104 | this.position += 2; |
no outgoing calls
no test coverage detected