()
| 128 | } |
| 129 | |
| 130 | public getInt16(): number { |
| 131 | const value = this._data.getInt16(this._position, this._littleEndian); |
| 132 | this._position += 2; |
| 133 | return value; |
| 134 | } |
| 135 | |
| 136 | public getUint32(): number { |
| 137 | const value = this._data.getUint32(this._position, this._littleEndian); |
no outgoing calls
no test coverage detected