@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.
@@ -11382,7 +11382,10 @@ process = adaptorIns(dsp_code.process) : dsp_code.effect : adaptorOuts;
11382
11382
  }
11383
11383
  }
11384
11384
  } catch (e) {
11385
- console.warn(e);
11385
+ const errorMessage = e instanceof Error ? e.message : String(e != null ? e : "unknown error");
11386
+ if (!errorMessage.includes("undefined symbol : effect")) {
11387
+ console.warn(e);
11388
+ }
11386
11389
  this.voiceFactory = await compiler.createPolyDSPFactory(
11387
11390
  name,
11388
11391
  dspCodeAux,