Static
downloadStatic
loadLoads WebAssembly binary, either by downloading it or retrieving from disk
Optional
path: stringOptional path to save/load the WebAssembly file
A promise that resolves to the WebAssembly binary buffer
// Download the WASM file each time
const wasmData = await WasmUtils.loadWasm();
// Or save/load it from disk for caching
const wasmData = await WasmUtils.loadWasm('./cache/main.wasm');
Generated using TypeDoc
Utility class for managing WebAssembly binary files