@grame/faustwasm 0.13.3 → 0.13.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11336,7 +11336,10 @@ process = adaptorIns(dsp_code.process) : dsp_code.effect : adaptorOuts;
11336
11336
  }
11337
11337
  }
11338
11338
  } catch (e) {
11339
- console.warn(e);
11339
+ const errorMessage = e instanceof Error ? e.message : String(e != null ? e : "unknown error");
11340
+ if (!errorMessage.includes("undefined symbol : effect")) {
11341
+ console.warn(e);
11342
+ }
11340
11343
  this.voiceFactory = await compiler.createPolyDSPFactory(
11341
11344
  name,
11342
11345
  dspCodeAux,