@json-eval-rs/bundler 0.0.57 → 0.0.59

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.57",
3
+ "version": "0.0.59",
4
4
  "description": "JSON Eval RS for bundlers (Webpack, Vite, Next.js, etc.) with ergonomic API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,17 +1,17 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Initialize the library (sets up panic hook)
4
+ * Get library version (alias)
5
5
  */
6
- export function init(): void;
6
+ export function version(): string;
7
7
  /**
8
8
  * Get the library version
9
9
  */
10
10
  export function getVersion(): string;
11
11
  /**
12
- * Get library version (alias)
12
+ * Initialize the library (sets up panic hook)
13
13
  */
14
- export function version(): string;
14
+ export function init(): void;
15
15
  /**
16
16
  * WebAssembly wrapper for JSONEval
17
17
  */
@@ -153,17 +153,10 @@ function passArrayJsValueToWasm0(array, malloc) {
153
153
  return ptr;
154
154
  }
155
155
  /**
156
- * Initialize the library (sets up panic hook)
157
- */
158
- export function init() {
159
- wasm.init();
160
- }
161
-
162
- /**
163
- * Get the library version
156
+ * Get library version (alias)
164
157
  * @returns {string}
165
158
  */
166
- export function getVersion() {
159
+ export function version() {
167
160
  let deferred1_0;
168
161
  let deferred1_1;
169
162
  try {
@@ -181,10 +174,10 @@ export function getVersion() {
181
174
  }
182
175
 
183
176
  /**
184
- * Get library version (alias)
177
+ * Get the library version
185
178
  * @returns {string}
186
179
  */
187
- export function version() {
180
+ export function getVersion() {
188
181
  let deferred1_0;
189
182
  let deferred1_1;
190
183
  try {
@@ -201,6 +194,13 @@ export function version() {
201
194
  }
202
195
  }
203
196
 
197
+ /**
198
+ * Initialize the library (sets up panic hook)
199
+ */
200
+ export function init() {
201
+ wasm.init();
202
+ }
203
+
204
204
  function passArray8ToWasm0(arg, malloc) {
205
205
  const ptr = malloc(arg.length * 1, 1) >>> 0;
206
206
  getUint8ArrayMemory0().set(arg, ptr / 1);
@@ -2236,7 +2236,7 @@ export function __wbg_getTime_6bb3f64e0f18f817(arg0) {
2236
2236
  return ret;
2237
2237
  };
2238
2238
 
2239
- export function __wbg_log_c5bf37a3dcf4677e(arg0, arg1) {
2239
+ export function __wbg_log_48189e6c2c18cf42(arg0, arg1) {
2240
2240
  console.log(getStringFromWasm0(arg0, arg1));
2241
2241
  };
2242
2242
 
Binary file