()
| 33 | } |
| 34 | |
| 35 | public int32(): number { |
| 36 | // const result = this.buffer.readInt32BE(this.#offset) |
| 37 | const result = this.#bufferView.getInt32(this.#offset, this.#littleEndian) |
| 38 | this.#offset += 4 |
| 39 | return result |
| 40 | } |
| 41 | |
| 42 | public string(length: number): string { |
| 43 | // const result = this.#bufferView.toString( |
no outgoing calls
no test coverage detected