@json-eval-rs/node 0.0.67 → 0.0.69

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/node",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "description": "JSON Eval RS for Node.js and Server-Side Rendering with ergonomic API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,9 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
+ /**
4
+ * Get the library version
5
+ */
6
+ export function getVersion(): string;
3
7
  /**
4
8
  * Initialize the library (sets up panic hook)
5
9
  */
@@ -8,10 +12,6 @@ export function init(): void;
8
12
  * Get library version (alias)
9
13
  */
10
14
  export function version(): string;
11
- /**
12
- * Get the library version
13
- */
14
- export function getVersion(): string;
15
15
  /**
16
16
  * WebAssembly wrapper for JSONEval
17
17
  */
@@ -143,17 +143,10 @@ function passArrayJsValueToWasm0(array, malloc) {
143
143
  return ptr;
144
144
  }
145
145
  /**
146
- * Initialize the library (sets up panic hook)
147
- */
148
- exports.init = function() {
149
- wasm.init();
150
- };
151
-
152
- /**
153
- * Get library version (alias)
146
+ * Get the library version
154
147
  * @returns {string}
155
148
  */
156
- exports.version = function() {
149
+ exports.getVersion = function() {
157
150
  let deferred1_0;
158
151
  let deferred1_1;
159
152
  try {
@@ -171,10 +164,17 @@ exports.version = function() {
171
164
  };
172
165
 
173
166
  /**
174
- * Get the library version
167
+ * Initialize the library (sets up panic hook)
168
+ */
169
+ exports.init = function() {
170
+ wasm.init();
171
+ };
172
+
173
+ /**
174
+ * Get library version (alias)
175
175
  * @returns {string}
176
176
  */
177
- exports.getVersion = function() {
177
+ exports.version = function() {
178
178
  let deferred1_0;
179
179
  let deferred1_1;
180
180
  try {
@@ -2232,7 +2232,7 @@ exports.__wbg_getTime_6bb3f64e0f18f817 = function(arg0) {
2232
2232
  return ret;
2233
2233
  };
2234
2234
 
2235
- exports.__wbg_log_d1f198278b9004fc = function(arg0, arg1) {
2235
+ exports.__wbg_log_aa26c2b8fafd22f1 = function(arg0, arg1) {
2236
2236
  console.log(getStringFromWasm0(arg0, arg1));
2237
2237
  };
2238
2238
 
Binary file