-
Notifications
You must be signed in to change notification settings - Fork 1
/
loader_tpl.js
37 lines (32 loc) · 1.09 KB
/
loader_tpl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Set the default global log for use by wasm_exec.js
go_log = console.log;
var useWasm = location.href.includes("?wasm");
console.log("useWasm =", useWasm);
var script = document.createElement('script');
if (useWasm) {
script.src = "wasm_exec.js";
script.onload = function () {
// polyfill
if (!WebAssembly.instantiateStreaming) {
WebAssembly.instantiateStreaming = async (resp, importObject) => {
const source = await (await resp).arrayBuffer();
return await WebAssembly.instantiate(source, importObject);
};
}
const go = new Go();
let mod, inst;
WebAssembly.instantiateStreaming(fetch("igop.wasm"), go.importObject).then((result) => {
mod = result.module;
inst = result.instance;
run();
});
async function run() {
console.clear();
await go.run(inst);
inst = await WebAssembly.instantiate(mod, go.importObject); // reset instance
}
};
} else {
script.src = "igop.js";
}
document.head.appendChild(script);