@json-eval-rs/bundler 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.
package/package.json
CHANGED
package/pkg/json_eval_rs.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Initialize the library (sets up panic hook)
|
|
5
|
+
*/
|
|
6
|
+
export function init(): void;
|
|
3
7
|
/**
|
|
4
8
|
* Get the library version
|
|
5
9
|
*/
|
|
@@ -8,10 +12,6 @@ export function getVersion(): string;
|
|
|
8
12
|
* Get library version (alias)
|
|
9
13
|
*/
|
|
10
14
|
export function version(): string;
|
|
11
|
-
/**
|
|
12
|
-
* Initialize the library (sets up panic hook)
|
|
13
|
-
*/
|
|
14
|
-
export function init(): void;
|
|
15
15
|
/**
|
|
16
16
|
* WebAssembly wrapper for JSONEval
|
|
17
17
|
*/
|
package/pkg/json_eval_rs_bg.js
CHANGED
|
@@ -217,6 +217,13 @@ function passArrayJsValueToWasm0(array, malloc) {
|
|
|
217
217
|
WASM_VECTOR_LEN = array.length;
|
|
218
218
|
return ptr;
|
|
219
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* Initialize the library (sets up panic hook)
|
|
222
|
+
*/
|
|
223
|
+
export function init() {
|
|
224
|
+
wasm.init();
|
|
225
|
+
}
|
|
226
|
+
|
|
220
227
|
/**
|
|
221
228
|
* Get the library version
|
|
222
229
|
* @returns {string}
|
|
@@ -259,13 +266,6 @@ export function version() {
|
|
|
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);
|
|
@@ -2160,7 +2160,7 @@ export function __wbg_getTime_6bb3f64e0f18f817(arg0) {
|
|
|
2160
2160
|
return ret;
|
|
2161
2161
|
};
|
|
2162
2162
|
|
|
2163
|
-
export function
|
|
2163
|
+
export function __wbg_log_ec39d4fa397181b8(arg0, arg1) {
|
|
2164
2164
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
2165
2165
|
};
|
|
2166
2166
|
|
package/pkg/json_eval_rs_bg.wasm
CHANGED
|
Binary file
|