()
| 12 | } |
| 13 | |
| 14 | public int16(): number { |
| 15 | const result = this.buffer.readInt16BE(this.offset) |
| 16 | this.offset += 2 |
| 17 | return result |
| 18 | } |
| 19 | |
| 20 | public byte(): number { |
| 21 | const result = this.buffer[this.offset] |
no outgoing calls
no test coverage detected