()
| 122 | } |
| 123 | |
| 124 | public getUint16(): number { |
| 125 | const value = this._data.getUint16(this._position, this._littleEndian); |
| 126 | this._position += 2; |
| 127 | return value; |
| 128 | } |
| 129 | |
| 130 | public getInt16(): number { |
| 131 | const value = this._data.getInt16(this._position, this._littleEndian); |
no outgoing calls
no test coverage detected