(offset)
| 347 | } |
| 348 | |
| 349 | read32_at(offset) { |
| 350 | const str = this.rstr; |
| 351 | return (str.charCodeAt(offset) | (str.charCodeAt(offset + 1) << 8) | (str.charCodeAt(offset + 2) << 16) | (str.charCodeAt(offset + 3) << 24)) >>> 0; |
| 352 | } |
| 353 | |
| 354 | read64_at(offset) { |
| 355 | return sread64(this.rstr, offset); |
no outgoing calls
no test coverage detected