@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.
@@ -5548,7 +5548,10 @@ process = adaptorIns(dsp_code.process) : dsp_code.effect : adaptorOuts;
5548
5548
  }
5549
5549
  }
5550
5550
  } catch (e) {
5551
- console.warn(e);
5551
+ const errorMessage = e instanceof Error ? e.message : String(e != null ? e : "unknown error");
5552
+ if (!errorMessage.includes("undefined symbol : effect")) {
5553
+ console.warn(e);
5554
+ }
5552
5555
  this.voiceFactory = await compiler.createPolyDSPFactory(
5553
5556
  name,
5554
5557
  dspCodeAux,