deno_cli_lib_windmill 0.104.0

Deno cli lib for the needs of windmill
1
2
3
4
5
6
7
8
9
// WebAssembly module containing a single function with an unreachable instruction
const binary = await Deno.readFile("./assets/unreachable.wasm");

const module = new WebAssembly.Module(binary);
const instance = new WebAssembly.Instance(module);

// Compare the stack trace with wasm_url.js, which compiles the WASM module with
// streaming APIs.
instance.exports.unreachable();