()
| 41 | } |
| 42 | |
| 43 | readUint64(): bigint { |
| 44 | const val = this.view.getBigUint64(this.offset, true); |
| 45 | this.offset += 8; |
| 46 | return val; |
| 47 | } |
| 48 | |
| 49 | readUint64AsNumber(): number { |
| 50 | return Number(this.readUint64()); |
no outgoing calls
no test coverage detected