rumdl-wasm 0.0.213 → 0.0.215
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 +1 -1
- package/rumdl_lib.d.ts +4 -4
- package/rumdl_lib.js +7 -7
- package/rumdl_lib_bg.wasm +0 -0
package/package.json
CHANGED
package/rumdl_lib.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Get the rumdl version
|
|
5
|
-
*/
|
|
6
|
-
export function get_version(): string;
|
|
7
3
|
/**
|
|
8
4
|
* Initialize the WASM module with better panic messages
|
|
9
5
|
*/
|
|
10
6
|
export function init(): void;
|
|
7
|
+
/**
|
|
8
|
+
* Get the rumdl version
|
|
9
|
+
*/
|
|
10
|
+
export function get_version(): string;
|
|
11
11
|
/**
|
|
12
12
|
* Get list of available rules as JSON
|
|
13
13
|
*
|
package/rumdl_lib.js
CHANGED
|
@@ -203,6 +203,13 @@ function takeObject(idx) {
|
|
|
203
203
|
dropObject(idx);
|
|
204
204
|
return ret;
|
|
205
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* Initialize the WASM module with better panic messages
|
|
208
|
+
*/
|
|
209
|
+
export function init() {
|
|
210
|
+
wasm.init();
|
|
211
|
+
}
|
|
212
|
+
|
|
206
213
|
/**
|
|
207
214
|
* Get the rumdl version
|
|
208
215
|
* @returns {string}
|
|
@@ -224,13 +231,6 @@ export function get_version() {
|
|
|
224
231
|
}
|
|
225
232
|
}
|
|
226
233
|
|
|
227
|
-
/**
|
|
228
|
-
* Initialize the WASM module with better panic messages
|
|
229
|
-
*/
|
|
230
|
-
export function init() {
|
|
231
|
-
wasm.init();
|
|
232
|
-
}
|
|
233
|
-
|
|
234
234
|
/**
|
|
235
235
|
* Get list of available rules as JSON
|
|
236
236
|
*
|
package/rumdl_lib_bg.wasm
CHANGED
|
Binary file
|