@json-eval-rs/bundler 0.0.64 → 0.0.66
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,9 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Initialize the library (sets up panic hook)
|
|
5
|
-
*/
|
|
6
|
-
export function init(): void;
|
|
7
3
|
/**
|
|
8
4
|
* Get library version (alias)
|
|
9
5
|
*/
|
|
@@ -12,6 +8,10 @@ export function version(): string;
|
|
|
12
8
|
* Get the library version
|
|
13
9
|
*/
|
|
14
10
|
export function getVersion(): 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
|
@@ -152,13 +152,6 @@ function passArrayJsValueToWasm0(array, malloc) {
|
|
|
152
152
|
WASM_VECTOR_LEN = array.length;
|
|
153
153
|
return ptr;
|
|
154
154
|
}
|
|
155
|
-
/**
|
|
156
|
-
* Initialize the library (sets up panic hook)
|
|
157
|
-
*/
|
|
158
|
-
export function init() {
|
|
159
|
-
wasm.init();
|
|
160
|
-
}
|
|
161
|
-
|
|
162
155
|
/**
|
|
163
156
|
* Get library version (alias)
|
|
164
157
|
* @returns {string}
|
|
@@ -201,6 +194,13 @@ export function getVersion() {
|
|
|
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
|
|
2239
|
+
export function __wbg_log_0c12a431c8f8be54(arg0, arg1) {
|
|
2240
2240
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
2241
2241
|
};
|
|
2242
2242
|
|
package/pkg/json_eval_rs_bg.wasm
CHANGED
|
Binary file
|