mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 19:43:44 +00:00
27 lines
538 B
JavaScript
27 lines
538 B
JavaScript
'use strict';
|
|
|
|
const WASM_URL = 'wasm.wasm';
|
|
|
|
var wasm;
|
|
|
|
function init() {
|
|
const go = new Go();
|
|
if ('instantiateStreaming' in WebAssembly) {
|
|
WebAssembly.instantiateStreaming(fetch(WASM_URL), go.importObject).then(function (obj) {
|
|
wasm = obj.instance;
|
|
go.run(wasm);
|
|
})
|
|
} else {
|
|
fetch(WASM_URL).then(resp =>
|
|
resp.arrayBuffer()
|
|
).then(bytes =>
|
|
WebAssembly.instantiate(bytes, go.importObject).then(function (obj) {
|
|
wasm = obj.instance;
|
|
go.run(wasm);
|
|
})
|
|
)
|
|
}
|
|
}
|
|
|
|
init();
|