loadWasmExec = async callback => {
const response = await fetch(
'https://raw.githubusercontent.com/golang/go/release-branch.go1.13/misc/wasm/wasm_exec.js'
);
const text = await response.text();
const script = document.createElement('script');
const code = document.createTextNode(text);
script.appendChild(code);
script.onload = callback;
document.body.appendChild(script);
}