remove init sync warning

This commit is contained in:
Percs 2024-10-03 18:30:42 -05:00
parent 62cea29a9f
commit 941c545d58
3 changed files with 14 additions and 14 deletions

View file

@ -8,11 +8,11 @@ import {
rewrite_js_from_arraybuffer,
} from "../../../rewriter/out/rewriter.js";
initSync(
new WebAssembly.Module(
initSync({
module: new WebAssembly.Module(
Uint8Array.from(atob(self.WASM), (c) => c.charCodeAt(0))
)
);
),
});
init();