MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / read32_at

Method read32_at

g2all/900/psfree.js:320–328  ·  view source on GitHub ↗
(offset)

Source from the content-addressed store, hash-verified

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);

Callers 2

leak_code_blockFunction · 0.45
make_arwFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected