spessasynth_core 1.1.8 → 1.1.9

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.
Files changed (2) hide show
  1. package/index.js +6 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -44,6 +44,9 @@ import {
44
44
  SpessaSynthWarn
45
45
  } from "./src/utils/loggin.js";
46
46
  import { readBytesAsUintBigEndian } from "./src/utils/byte_functions/big_endian.js";
47
+ import { readLittleEndian } from "./src/utils/byte_functions/little_endian.js";
48
+ import { readBytesAsString } from "./src/utils/byte_functions/string.js";
49
+ import { readVariableLengthQuantity } from "./src/utils/byte_functions/variable_length_quantity.js";
47
50
  import { consoleColors } from "./src/utils/other.js";
48
51
  import { inflateSync } from "./src/externals/fflate/fflate.min.js";
49
52
 
@@ -55,6 +58,9 @@ const SpessaSynthCoreUtils = {
55
58
  SpessaSynthGroupCollapsed,
56
59
  SpessaSynthGroupEnd,
57
60
  readBytesAsUintBigEndian,
61
+ readLittleEndian,
62
+ readBytesAsString,
63
+ readVariableLengthQuantity,
58
64
  inflateSync
59
65
  };
60
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spessasynth_core",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "MIDI and SoundFont2/DLS library with no compromises",
5
5
  "main": "index.js",
6
6
  "type": "module",