()
| 126 | const original_loc = location.pathname; |
| 127 | |
| 128 | function gc() { |
| 129 | new Uint8Array(4 * MB); |
| 130 | } |
| 131 | |
| 132 | function sread64(str, offset) { |
| 133 | const low = str.charCodeAt(offset) | (str.charCodeAt(offset + 1) << 8) | (str.charCodeAt(offset + 2) << 16) | (str.charCodeAt(offset + 3) << 24); |
no outgoing calls
no test coverage detected