()
| 19 | } |
| 20 | |
| 21 | public int16(): number { |
| 22 | // const result = this.buffer.readInt16BE(this.#offset) |
| 23 | const result = this.#bufferView.getInt16(this.#offset, this.#littleEndian) |
| 24 | this.#offset += 2 |
| 25 | return result |
| 26 | } |
| 27 | |
| 28 | public byte(): number { |
| 29 | // const result = this.bufferView[this.#offset] |
no outgoing calls
no test coverage detected