@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.
package/dist/cjs/index.js CHANGED
@@ -5577,7 +5577,10 @@ process = adaptorIns(dsp_code.process) : dsp_code.effect : adaptorOuts;
5577
5577
  }
5578
5578
  }
5579
5579
  } catch (e) {
5580
- console.warn(e);
5580
+ const errorMessage = e instanceof Error ? e.message : String(e != null ? e : "unknown error");
5581
+ if (!errorMessage.includes("undefined symbol : effect")) {
5582
+ console.warn(e);
5583
+ }
5581
5584
  this.voiceFactory = await compiler.createPolyDSPFactory(
5582
5585
  name,
5583
5586
  dspCodeAux,