We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d5e9d6 commit e7753e7Copy full SHA for e7753e7
annotation-tool/src/App/Utils.js
@@ -165,7 +165,7 @@ export const musicxml2pv = (mkLeft) => (mkRight) => (unfold) => (musicxml) => as
165
const wasm = await WebAssembly.instantiateStreaming(fetch(new URL("musicxml2pv.wasm", import.meta.url)), wasi.getImportObject());
166
// console.log(wasm);
167
168
- result = await wasi.start(wasm, {});
+ const result = await wasi.start(wasm, {});
169
console.log(result);
170
if (output == "") {
171
return mkLeft("musicxml2pv returned empty string");
0 commit comments