(offset)
| 318 | } |
| 319 | |
| 320 | read32_at(offset) { |
| 321 | const str = this.rstr; |
| 322 | return ( |
| 323 | str.charCodeAt(offset) |
| 324 | | str.charCodeAt(offset + 1) << 8 |
| 325 | | str.charCodeAt(offset + 2) << 16 |
| 326 | | str.charCodeAt(offset + 3) << 24 |
| 327 | ) >>> 0; |
| 328 | } |
| 329 | |
| 330 | read64_at(offset) { |
| 331 | return sread64(this.rstr, offset); |
no outgoing calls
no test coverage detected