@grame/faustwasm 0.0.30 → 0.0.32

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.
@@ -1748,7 +1748,7 @@ var FaustWasmInstantiator = class {
1748
1748
  _min_f: Math.min,
1749
1749
  _remainderf: (x, y) => x - Math.round(x / y) * y,
1750
1750
  _powf: Math.pow,
1751
- _roundf: Math.fround,
1751
+ _roundf: Math.round,
1752
1752
  _sinf: Math.sin,
1753
1753
  _sqrtf: Math.sqrt,
1754
1754
  _tanf: Math.tan,
@@ -1776,7 +1776,7 @@ var FaustWasmInstantiator = class {
1776
1776
  _min_: Math.min,
1777
1777
  _remainder: (x, y) => x - Math.round(x / y) * y,
1778
1778
  _pow: Math.pow,
1779
- _round: Math.fround,
1779
+ _round: Math.round,
1780
1780
  _sin: Math.sin,
1781
1781
  _sqrt: Math.sqrt,
1782
1782
  _tan: Math.tan,