pwnd fetch("crasher.wasm") .then((response) => response.arrayBuffer()) .then((bytes) => WebAssembly.instantiate(bytes, importObject)) .then((results) => { results.instance.exports.exported_func(); });