(arg)
| 39 | let WASM_VECTOR_LEN = 0; |
| 40 | |
| 41 | function passArray8ToWasm(arg) { |
| 42 | const ptr = wasm.exports.__wbindgen_malloc(arg.length * 1); |
| 43 | getUint8Memory().set(arg, ptr / 1); |
| 44 | WASM_VECTOR_LEN = arg.length; |
| 45 | return ptr; |
| 46 | } |
| 47 | |
| 48 | function getArrayU8FromWasm(ptr, len) { |
| 49 | return getUint8Memory().subarray(ptr / 1, ptr / 1 + len); |
no test coverage detected