()
| 134 | } |
| 135 | |
| 136 | public getUint32(): number { |
| 137 | const value = this._data.getUint32(this._position, this._littleEndian); |
| 138 | this._position += 4; |
| 139 | return value; |
| 140 | } |
| 141 | |
| 142 | public getInt32(): number { |
| 143 | const value = this._data.getInt32(this._position, this._littleEndian); |
no outgoing calls
no test coverage detected