()
| 5 | this.view = new DataView(buffer, 0); |
| 6 | } |
| 7 | read16() { |
| 8 | const int = this.view.getUint16(this.i); |
| 9 | this.i += 2; |
| 10 | return int; |
| 11 | } |
| 12 | read8() { |
| 13 | const int = this.view.getUint8(this.i); |
| 14 | this.i += 1; |
no outgoing calls
no test coverage detected