spessasynth_core 4.1.4 → 4.1.5

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/index.js CHANGED
@@ -96,7 +96,7 @@ function readBinaryString(dataArray, bytes = dataArray.length, offset = 0) {
96
96
  if (byte === 0) {
97
97
  return string;
98
98
  }
99
- string += String.fromCodePoint(byte);
99
+ string += String.fromCharCode(byte);
100
100
  }
101
101
  return string;
102
102
  }