(offset)
| 41 | } |
| 42 | |
| 43 | read32(offset) { |
| 44 | return this._dview.getUint32(offset, true); |
| 45 | } |
| 46 | |
| 47 | read64(offset) { |
| 48 | return new Int(this._dview.getUint32(offset, true), this._dview.getUint32(offset + 4, true)); |
no outgoing calls
no test coverage detected