@json-eval-rs/bundler 0.0.41 → 0.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-eval-rs/bundler",
3
- "version": "0.0.41",
3
+ "version": "0.0.44",
4
4
  "description": "JSON Eval RS for bundlers (Webpack, Vite, Next.js, etc.) with ergonomic API",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -4,14 +4,14 @@
4
4
  * Get library version (alias)
5
5
  */
6
6
  export function version(): string;
7
- /**
8
- * Get the library version
9
- */
10
- export function getVersion(): string;
11
7
  /**
12
8
  * Initialize the library (sets up panic hook)
13
9
  */
14
10
  export function init(): void;
11
+ /**
12
+ * Get the library version
13
+ */
14
+ export function getVersion(): string;
15
15
  /**
16
16
  * WebAssembly wrapper for JSONEval
17
17
  */
@@ -238,6 +238,13 @@ export function version() {
238
238
  }
239
239
  }
240
240
 
241
+ /**
242
+ * Initialize the library (sets up panic hook)
243
+ */
244
+ export function init() {
245
+ wasm.init();
246
+ }
247
+
241
248
  /**
242
249
  * Get the library version
243
250
  * @returns {string}
@@ -259,13 +266,6 @@ export function getVersion() {
259
266
  }
260
267
  }
261
268
 
262
- /**
263
- * Initialize the library (sets up panic hook)
264
- */
265
- export function init() {
266
- wasm.init();
267
- }
268
-
269
269
  function passArray8ToWasm0(arg, malloc) {
270
270
  const ptr = malloc(arg.length * 1, 1) >>> 0;
271
271
  getUint8ArrayMemory0().set(arg, ptr / 1);
@@ -2180,7 +2180,7 @@ export function __wbg_getTime_6bb3f64e0f18f817(arg0) {
2180
2180
  return ret;
2181
2181
  };
2182
2182
 
2183
- export function __wbg_log_719b446733afdc93(arg0, arg1) {
2183
+ export function __wbg_log_2c698220b4282966(arg0, arg1) {
2184
2184
  console.log(getStringFromWasm0(arg0, arg1));
2185
2185
  };
2186
2186
 
Binary file