@janssenproject/cedarling_wasm 1.13.0 → 1.14.0
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/README.md +1 -1
- package/cedarling_wasm.d.ts +6 -5
- package/cedarling_wasm.js +225 -241
- package/cedarling_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -232,7 +232,7 @@ const BOOTSTRAP_CONFIG = {
|
|
|
232
232
|
};
|
|
233
233
|
```
|
|
234
234
|
|
|
235
|
-
For complete configuration documentation, see [cedarling-properties.md](../../../docs/cedarling/cedarling-properties.md).
|
|
235
|
+
For complete configuration documentation, see [cedarling-properties.md](../../../docs/cedarling/cedarling-properties.md) or on [our page](https://docs.jans.io/stable/cedarling/cedarling-properties/) .
|
|
236
236
|
|
|
237
237
|
```
|
|
238
238
|
|
package/cedarling_wasm.d.ts
CHANGED
|
@@ -217,18 +217,19 @@ export interface InitOutput {
|
|
|
217
217
|
readonly jsjsonlogic_new: () => number;
|
|
218
218
|
readonly jsjsonlogic_apply: (a: number, b: any, c: any) => [number, number, number];
|
|
219
219
|
readonly ring_core_0_17_14__bn_mul_mont: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
220
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf8ac7184f86fbcce: (a: number, b: number) => void;
|
|
221
|
+
readonly wasm_bindgen__closure__destroy__ha0787d3d14449f11: (a: number, b: number) => void;
|
|
222
|
+
readonly wasm_bindgen__convert__closures_____invoke__h1c715d53d5a00020: (a: number, b: number, c: any) => void;
|
|
223
|
+
readonly wasm_bindgen__closure__destroy__h8bb11a3ec59bf31f: (a: number, b: number) => void;
|
|
224
|
+
readonly wasm_bindgen__convert__closures_____invoke__h4b59ba169ea05287: (a: number, b: number, c: any, d: any) => void;
|
|
220
225
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
221
226
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
222
227
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
223
228
|
readonly __externref_table_alloc: () => number;
|
|
224
|
-
readonly
|
|
225
|
-
readonly __wbindgen_export_5: WebAssembly.Table;
|
|
229
|
+
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
226
230
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
227
231
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
228
232
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
229
|
-
readonly wasm_bindgen__convert__closures_____invoke__hd85855495ef290f9: (a: number, b: number) => void;
|
|
230
|
-
readonly closure551_externref_shim: (a: number, b: number, c: any) => void;
|
|
231
|
-
readonly closure1832_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
232
233
|
readonly __wbindgen_start: () => void;
|
|
233
234
|
}
|
|
234
235
|
|
package/cedarling_wasm.js
CHANGED
|
@@ -93,26 +93,6 @@ function getDataViewMemory0() {
|
|
|
93
93
|
return cachedDataViewMemory0;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
function addToExternrefTable0(obj) {
|
|
97
|
-
const idx = wasm.__externref_table_alloc();
|
|
98
|
-
wasm.__wbindgen_export_4.set(idx, obj);
|
|
99
|
-
return idx;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
function handleError(f, args) {
|
|
103
|
-
try {
|
|
104
|
-
return f.apply(this, args);
|
|
105
|
-
} catch (e) {
|
|
106
|
-
const idx = addToExternrefTable0(e);
|
|
107
|
-
wasm.__wbindgen_exn_store(idx);
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
function getArrayU8FromWasm0(ptr, len) {
|
|
112
|
-
ptr = ptr >>> 0;
|
|
113
|
-
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
96
|
function isLikeNone(x) {
|
|
117
97
|
return x === undefined || x === null;
|
|
118
98
|
}
|
|
@@ -182,13 +162,29 @@ function debugString(val) {
|
|
|
182
162
|
return className;
|
|
183
163
|
}
|
|
184
164
|
|
|
165
|
+
function addToExternrefTable0(obj) {
|
|
166
|
+
const idx = wasm.__externref_table_alloc();
|
|
167
|
+
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
168
|
+
return idx;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function handleError(f, args) {
|
|
172
|
+
try {
|
|
173
|
+
return f.apply(this, args);
|
|
174
|
+
} catch (e) {
|
|
175
|
+
const idx = addToExternrefTable0(e);
|
|
176
|
+
wasm.__wbindgen_exn_store(idx);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
181
|
+
ptr = ptr >>> 0;
|
|
182
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
185
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
186
186
|
? { register: () => {}, unregister: () => {} }
|
|
187
|
-
: new FinalizationRegistry(
|
|
188
|
-
state => {
|
|
189
|
-
wasm.__wbindgen_export_5.get(state.dtor)(state.a, state.b);
|
|
190
|
-
}
|
|
191
|
-
);
|
|
187
|
+
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
192
188
|
|
|
193
189
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
194
190
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
@@ -203,15 +199,17 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
203
199
|
try {
|
|
204
200
|
return f(a, state.b, ...args);
|
|
205
201
|
} finally {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
202
|
+
state.a = a;
|
|
203
|
+
real._wbg_cb_unref();
|
|
204
|
+
}
|
|
205
|
+
};
|
|
206
|
+
real._wbg_cb_unref = () => {
|
|
207
|
+
if (--state.cnt === 0) {
|
|
208
|
+
state.dtor(state.a, state.b);
|
|
209
|
+
state.a = 0;
|
|
210
|
+
CLOSURE_DTORS.unregister(state);
|
|
212
211
|
}
|
|
213
212
|
};
|
|
214
|
-
real.original = state;
|
|
215
213
|
CLOSURE_DTORS.register(real, state, state);
|
|
216
214
|
return real;
|
|
217
215
|
}
|
|
@@ -227,7 +225,7 @@ export function init(config) {
|
|
|
227
225
|
}
|
|
228
226
|
|
|
229
227
|
function takeFromExternrefTable0(idx) {
|
|
230
|
-
const value = wasm.
|
|
228
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
231
229
|
wasm.__externref_table_dealloc(idx);
|
|
232
230
|
return value;
|
|
233
231
|
}
|
|
@@ -237,7 +235,7 @@ function getArrayJsValueFromWasm0(ptr, len) {
|
|
|
237
235
|
const mem = getDataViewMemory0();
|
|
238
236
|
const result = [];
|
|
239
237
|
for (let i = ptr; i < ptr + 4 * len; i += 4) {
|
|
240
|
-
result.push(wasm.
|
|
238
|
+
result.push(wasm.__wbindgen_externrefs.get(mem.getUint32(i, true)));
|
|
241
239
|
}
|
|
242
240
|
wasm.__externref_drop_slice(ptr, len);
|
|
243
241
|
return result;
|
|
@@ -248,16 +246,16 @@ function _assertClass(instance, klass) {
|
|
|
248
246
|
throw new Error(`expected instance of ${klass.name}`);
|
|
249
247
|
}
|
|
250
248
|
}
|
|
251
|
-
function
|
|
252
|
-
wasm.
|
|
249
|
+
function wasm_bindgen__convert__closures_____invoke__hf8ac7184f86fbcce(arg0, arg1) {
|
|
250
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hf8ac7184f86fbcce(arg0, arg1);
|
|
253
251
|
}
|
|
254
252
|
|
|
255
|
-
function
|
|
256
|
-
wasm.
|
|
253
|
+
function wasm_bindgen__convert__closures_____invoke__h1c715d53d5a00020(arg0, arg1, arg2) {
|
|
254
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h1c715d53d5a00020(arg0, arg1, arg2);
|
|
257
255
|
}
|
|
258
256
|
|
|
259
|
-
function
|
|
260
|
-
wasm.
|
|
257
|
+
function wasm_bindgen__convert__closures_____invoke__h4b59ba169ea05287(arg0, arg1, arg2, arg3) {
|
|
258
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h4b59ba169ea05287(arg0, arg1, arg2, arg3);
|
|
261
259
|
}
|
|
262
260
|
|
|
263
261
|
const __wbindgen_enum_RequestCache = ["default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached"];
|
|
@@ -825,11 +823,11 @@ async function __wbg_load(module, imports) {
|
|
|
825
823
|
function __wbg_get_imports() {
|
|
826
824
|
const imports = {};
|
|
827
825
|
imports.wbg = {};
|
|
828
|
-
imports.wbg.
|
|
826
|
+
imports.wbg.__wbg_Error_e83987f665cf5504 = function(arg0, arg1) {
|
|
829
827
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
830
828
|
return ret;
|
|
831
829
|
};
|
|
832
|
-
imports.wbg.
|
|
830
|
+
imports.wbg.__wbg_Number_bb48ca12f395cd08 = function(arg0) {
|
|
833
831
|
const ret = Number(arg0);
|
|
834
832
|
return ret;
|
|
835
833
|
};
|
|
@@ -840,16 +838,87 @@ function __wbg_get_imports() {
|
|
|
840
838
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
841
839
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
842
840
|
};
|
|
843
|
-
imports.wbg.
|
|
844
|
-
|
|
841
|
+
imports.wbg.__wbg___wbindgen_bigint_get_as_i64_f3ebc5a755000afd = function(arg0, arg1) {
|
|
842
|
+
const v = arg1;
|
|
843
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
844
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
845
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
845
846
|
};
|
|
846
|
-
imports.wbg.
|
|
847
|
+
imports.wbg.__wbg___wbindgen_boolean_get_6d5a1ee65bab5f68 = function(arg0) {
|
|
848
|
+
const v = arg0;
|
|
849
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
850
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
851
|
+
};
|
|
852
|
+
imports.wbg.__wbg___wbindgen_debug_string_df47ffb5e35e6763 = function(arg0, arg1) {
|
|
853
|
+
const ret = debugString(arg1);
|
|
854
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
855
|
+
const len1 = WASM_VECTOR_LEN;
|
|
856
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
857
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
858
|
+
};
|
|
859
|
+
imports.wbg.__wbg___wbindgen_in_bb933bd9e1b3bc0f = function(arg0, arg1) {
|
|
860
|
+
const ret = arg0 in arg1;
|
|
861
|
+
return ret;
|
|
862
|
+
};
|
|
863
|
+
imports.wbg.__wbg___wbindgen_is_bigint_cb320707dcd35f0b = function(arg0) {
|
|
864
|
+
const ret = typeof(arg0) === 'bigint';
|
|
865
|
+
return ret;
|
|
866
|
+
};
|
|
867
|
+
imports.wbg.__wbg___wbindgen_is_function_ee8a6c5833c90377 = function(arg0) {
|
|
868
|
+
const ret = typeof(arg0) === 'function';
|
|
869
|
+
return ret;
|
|
870
|
+
};
|
|
871
|
+
imports.wbg.__wbg___wbindgen_is_object_c818261d21f283a4 = function(arg0) {
|
|
872
|
+
const val = arg0;
|
|
873
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
874
|
+
return ret;
|
|
875
|
+
};
|
|
876
|
+
imports.wbg.__wbg___wbindgen_is_string_fbb76cb2940daafd = function(arg0) {
|
|
877
|
+
const ret = typeof(arg0) === 'string';
|
|
878
|
+
return ret;
|
|
879
|
+
};
|
|
880
|
+
imports.wbg.__wbg___wbindgen_is_undefined_2d472862bd29a478 = function(arg0) {
|
|
881
|
+
const ret = arg0 === undefined;
|
|
882
|
+
return ret;
|
|
883
|
+
};
|
|
884
|
+
imports.wbg.__wbg___wbindgen_jsval_eq_6b13ab83478b1c50 = function(arg0, arg1) {
|
|
885
|
+
const ret = arg0 === arg1;
|
|
886
|
+
return ret;
|
|
887
|
+
};
|
|
888
|
+
imports.wbg.__wbg___wbindgen_jsval_loose_eq_b664b38a2f582147 = function(arg0, arg1) {
|
|
889
|
+
const ret = arg0 == arg1;
|
|
890
|
+
return ret;
|
|
891
|
+
};
|
|
892
|
+
imports.wbg.__wbg___wbindgen_number_get_a20bf9b85341449d = function(arg0, arg1) {
|
|
893
|
+
const obj = arg1;
|
|
894
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
895
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
896
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
897
|
+
};
|
|
898
|
+
imports.wbg.__wbg___wbindgen_string_get_e4f06c90489ad01b = function(arg0, arg1) {
|
|
899
|
+
const obj = arg1;
|
|
900
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
901
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
902
|
+
var len1 = WASM_VECTOR_LEN;
|
|
903
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
904
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
905
|
+
};
|
|
906
|
+
imports.wbg.__wbg___wbindgen_throw_b855445ff6a94295 = function(arg0, arg1) {
|
|
907
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
908
|
+
};
|
|
909
|
+
imports.wbg.__wbg__wbg_cb_unref_2454a539ea5790d9 = function(arg0) {
|
|
910
|
+
arg0._wbg_cb_unref();
|
|
911
|
+
};
|
|
912
|
+
imports.wbg.__wbg_abort_28ad55c5825b004d = function(arg0, arg1) {
|
|
847
913
|
arg0.abort(arg1);
|
|
848
914
|
};
|
|
849
|
-
imports.wbg.
|
|
915
|
+
imports.wbg.__wbg_abort_e7eb059f72f9ed0c = function(arg0) {
|
|
916
|
+
arg0.abort();
|
|
917
|
+
};
|
|
918
|
+
imports.wbg.__wbg_append_b577eb3a177bc0fa = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
850
919
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
851
920
|
}, arguments) };
|
|
852
|
-
imports.wbg.
|
|
921
|
+
imports.wbg.__wbg_arrayBuffer_b375eccb84b4ddf3 = function() { return handleError(function (arg0) {
|
|
853
922
|
const ret = arg0.arrayBuffer();
|
|
854
923
|
return ret;
|
|
855
924
|
}, arguments) };
|
|
@@ -857,12 +926,12 @@ function __wbg_get_imports() {
|
|
|
857
926
|
const ret = AuthorizeResult.__wrap(arg0);
|
|
858
927
|
return ret;
|
|
859
928
|
};
|
|
860
|
-
imports.wbg.
|
|
861
|
-
const ret = arg0.call(arg1);
|
|
929
|
+
imports.wbg.__wbg_call_525440f72fbfc0ea = function() { return handleError(function (arg0, arg1, arg2) {
|
|
930
|
+
const ret = arg0.call(arg1, arg2);
|
|
862
931
|
return ret;
|
|
863
932
|
}, arguments) };
|
|
864
|
-
imports.wbg.
|
|
865
|
-
const ret = arg0.call(arg1
|
|
933
|
+
imports.wbg.__wbg_call_e762c39fa8ea36bf = function() { return handleError(function (arg0, arg1) {
|
|
934
|
+
const ret = arg0.call(arg1);
|
|
866
935
|
return ret;
|
|
867
936
|
}, arguments) };
|
|
868
937
|
imports.wbg.__wbg_cedarling_new = function(arg0) {
|
|
@@ -877,33 +946,33 @@ function __wbg_get_imports() {
|
|
|
877
946
|
const ret = arg0.crypto;
|
|
878
947
|
return ret;
|
|
879
948
|
};
|
|
880
|
-
imports.wbg.
|
|
949
|
+
imports.wbg.__wbg_debug_755c0800f64c9a88 = function(arg0) {
|
|
881
950
|
console.debug(...arg0);
|
|
882
951
|
};
|
|
883
|
-
imports.wbg.
|
|
952
|
+
imports.wbg.__wbg_done_2042aa2670fb1db1 = function(arg0) {
|
|
884
953
|
const ret = arg0.done;
|
|
885
954
|
return ret;
|
|
886
955
|
};
|
|
887
|
-
imports.wbg.
|
|
956
|
+
imports.wbg.__wbg_entries_e171b586f8f6bdbf = function(arg0) {
|
|
888
957
|
const ret = Object.entries(arg0);
|
|
889
958
|
return ret;
|
|
890
959
|
};
|
|
891
|
-
imports.wbg.
|
|
960
|
+
imports.wbg.__wbg_entries_eb145c4da5c811f7 = function(arg0) {
|
|
892
961
|
const ret = arg0.entries();
|
|
893
962
|
return ret;
|
|
894
963
|
};
|
|
895
|
-
imports.wbg.
|
|
964
|
+
imports.wbg.__wbg_error_7a6b3e62969d4270 = function(arg0) {
|
|
896
965
|
console.error(...arg0);
|
|
897
966
|
};
|
|
898
967
|
imports.wbg.__wbg_fetch_74a3e84ebd2c9a0e = function(arg0) {
|
|
899
968
|
const ret = fetch(arg0);
|
|
900
969
|
return ret;
|
|
901
970
|
};
|
|
902
|
-
imports.wbg.
|
|
971
|
+
imports.wbg.__wbg_fetch_f8ba0e29a9d6de0d = function(arg0, arg1) {
|
|
903
972
|
const ret = arg0.fetch(arg1);
|
|
904
973
|
return ret;
|
|
905
974
|
};
|
|
906
|
-
imports.wbg.
|
|
975
|
+
imports.wbg.__wbg_fromEntries_c7159f3787268c9f = function() { return handleError(function (arg0) {
|
|
907
976
|
const ret = Object.fromEntries(arg0);
|
|
908
977
|
return ret;
|
|
909
978
|
}, arguments) };
|
|
@@ -913,38 +982,38 @@ function __wbg_get_imports() {
|
|
|
913
982
|
imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) {
|
|
914
983
|
arg0.getRandomValues(arg1);
|
|
915
984
|
}, arguments) };
|
|
916
|
-
imports.wbg.
|
|
985
|
+
imports.wbg.__wbg_getTime_14776bfb48a1bff9 = function(arg0) {
|
|
917
986
|
const ret = arg0.getTime();
|
|
918
987
|
return ret;
|
|
919
988
|
};
|
|
920
|
-
imports.wbg.
|
|
989
|
+
imports.wbg.__wbg_getTimezoneOffset_d391cb11d54969f8 = function(arg0) {
|
|
921
990
|
const ret = arg0.getTimezoneOffset();
|
|
922
991
|
return ret;
|
|
923
992
|
};
|
|
924
|
-
imports.wbg.
|
|
993
|
+
imports.wbg.__wbg_get_7bed016f185add81 = function(arg0, arg1) {
|
|
925
994
|
const ret = arg0[arg1 >>> 0];
|
|
926
995
|
return ret;
|
|
927
996
|
};
|
|
928
|
-
imports.wbg.
|
|
997
|
+
imports.wbg.__wbg_get_efcb449f58ec27c2 = function() { return handleError(function (arg0, arg1) {
|
|
929
998
|
const ret = Reflect.get(arg0, arg1);
|
|
930
999
|
return ret;
|
|
931
1000
|
}, arguments) };
|
|
932
|
-
imports.wbg.
|
|
1001
|
+
imports.wbg.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
|
|
933
1002
|
const ret = arg0[arg1];
|
|
934
1003
|
return ret;
|
|
935
1004
|
};
|
|
936
|
-
imports.wbg.
|
|
1005
|
+
imports.wbg.__wbg_has_787fafc980c3ccdb = function() { return handleError(function (arg0, arg1) {
|
|
937
1006
|
const ret = Reflect.has(arg0, arg1);
|
|
938
1007
|
return ret;
|
|
939
1008
|
}, arguments) };
|
|
940
|
-
imports.wbg.
|
|
1009
|
+
imports.wbg.__wbg_headers_b87d7eaba61c3278 = function(arg0) {
|
|
941
1010
|
const ret = arg0.headers;
|
|
942
1011
|
return ret;
|
|
943
1012
|
};
|
|
944
|
-
imports.wbg.
|
|
1013
|
+
imports.wbg.__wbg_info_f0ce824723264770 = function(arg0) {
|
|
945
1014
|
console.info(...arg0);
|
|
946
1015
|
};
|
|
947
|
-
imports.wbg.
|
|
1016
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_70beb1189ca63b38 = function(arg0) {
|
|
948
1017
|
let result;
|
|
949
1018
|
try {
|
|
950
1019
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -954,7 +1023,7 @@ function __wbg_get_imports() {
|
|
|
954
1023
|
const ret = result;
|
|
955
1024
|
return ret;
|
|
956
1025
|
};
|
|
957
|
-
imports.wbg.
|
|
1026
|
+
imports.wbg.__wbg_instanceof_Array_fca44e0f4a7f6240 = function(arg0) {
|
|
958
1027
|
let result;
|
|
959
1028
|
try {
|
|
960
1029
|
result = arg0 instanceof Array;
|
|
@@ -964,7 +1033,7 @@ function __wbg_get_imports() {
|
|
|
964
1033
|
const ret = result;
|
|
965
1034
|
return ret;
|
|
966
1035
|
};
|
|
967
|
-
imports.wbg.
|
|
1036
|
+
imports.wbg.__wbg_instanceof_Map_8579b5e2ab5437c7 = function(arg0) {
|
|
968
1037
|
let result;
|
|
969
1038
|
try {
|
|
970
1039
|
result = arg0 instanceof Map;
|
|
@@ -974,7 +1043,7 @@ function __wbg_get_imports() {
|
|
|
974
1043
|
const ret = result;
|
|
975
1044
|
return ret;
|
|
976
1045
|
};
|
|
977
|
-
imports.wbg.
|
|
1046
|
+
imports.wbg.__wbg_instanceof_Response_f4f3e87e07f3135c = function(arg0) {
|
|
978
1047
|
let result;
|
|
979
1048
|
try {
|
|
980
1049
|
result = arg0 instanceof Response;
|
|
@@ -984,7 +1053,7 @@ function __wbg_get_imports() {
|
|
|
984
1053
|
const ret = result;
|
|
985
1054
|
return ret;
|
|
986
1055
|
};
|
|
987
|
-
imports.wbg.
|
|
1056
|
+
imports.wbg.__wbg_instanceof_Uint8Array_20c8e73002f7af98 = function(arg0) {
|
|
988
1057
|
let result;
|
|
989
1058
|
try {
|
|
990
1059
|
result = arg0 instanceof Uint8Array;
|
|
@@ -994,57 +1063,57 @@ function __wbg_get_imports() {
|
|
|
994
1063
|
const ret = result;
|
|
995
1064
|
return ret;
|
|
996
1065
|
};
|
|
997
|
-
imports.wbg.
|
|
1066
|
+
imports.wbg.__wbg_isArray_96e0af9891d0945d = function(arg0) {
|
|
998
1067
|
const ret = Array.isArray(arg0);
|
|
999
1068
|
return ret;
|
|
1000
1069
|
};
|
|
1001
|
-
imports.wbg.
|
|
1070
|
+
imports.wbg.__wbg_isSafeInteger_d216eda7911dde36 = function(arg0) {
|
|
1002
1071
|
const ret = Number.isSafeInteger(arg0);
|
|
1003
1072
|
return ret;
|
|
1004
1073
|
};
|
|
1005
|
-
imports.wbg.
|
|
1074
|
+
imports.wbg.__wbg_iterator_e5822695327a3c39 = function() {
|
|
1006
1075
|
const ret = Symbol.iterator;
|
|
1007
1076
|
return ret;
|
|
1008
1077
|
};
|
|
1009
|
-
imports.wbg.
|
|
1078
|
+
imports.wbg.__wbg_keys_b4d27b02ad14f4be = function(arg0) {
|
|
1010
1079
|
const ret = Object.keys(arg0);
|
|
1011
1080
|
return ret;
|
|
1012
1081
|
};
|
|
1013
|
-
imports.wbg.
|
|
1082
|
+
imports.wbg.__wbg_length_69bca3cb64fc8748 = function(arg0) {
|
|
1014
1083
|
const ret = arg0.length;
|
|
1015
1084
|
return ret;
|
|
1016
1085
|
};
|
|
1017
|
-
imports.wbg.
|
|
1086
|
+
imports.wbg.__wbg_length_cdd215e10d9dd507 = function(arg0) {
|
|
1018
1087
|
const ret = arg0.length;
|
|
1019
1088
|
return ret;
|
|
1020
1089
|
};
|
|
1021
|
-
imports.wbg.
|
|
1090
|
+
imports.wbg.__wbg_log_33f7f6dbc0d0ccf4 = function(arg0) {
|
|
1022
1091
|
console.log(...arg0);
|
|
1023
1092
|
};
|
|
1024
1093
|
imports.wbg.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
|
1025
1094
|
const ret = arg0.msCrypto;
|
|
1026
1095
|
return ret;
|
|
1027
1096
|
};
|
|
1028
|
-
imports.wbg.
|
|
1097
|
+
imports.wbg.__wbg_new_0_f9740686d739025c = function() {
|
|
1029
1098
|
const ret = new Date();
|
|
1030
1099
|
return ret;
|
|
1031
1100
|
};
|
|
1032
|
-
imports.wbg.
|
|
1101
|
+
imports.wbg.__wbg_new_1acc0b6eea89d040 = function() {
|
|
1033
1102
|
const ret = new Object();
|
|
1034
1103
|
return ret;
|
|
1035
1104
|
};
|
|
1036
|
-
imports.wbg.
|
|
1037
|
-
const ret = new
|
|
1105
|
+
imports.wbg.__wbg_new_2531773dac38ebb3 = function() { return handleError(function () {
|
|
1106
|
+
const ret = new AbortController();
|
|
1038
1107
|
return ret;
|
|
1039
|
-
};
|
|
1040
|
-
imports.wbg.
|
|
1108
|
+
}, arguments) };
|
|
1109
|
+
imports.wbg.__wbg_new_3c3d849046688a66 = function(arg0, arg1) {
|
|
1041
1110
|
try {
|
|
1042
1111
|
var state0 = {a: arg0, b: arg1};
|
|
1043
1112
|
var cb0 = (arg0, arg1) => {
|
|
1044
1113
|
const a = state0.a;
|
|
1045
1114
|
state0.a = 0;
|
|
1046
1115
|
try {
|
|
1047
|
-
return
|
|
1116
|
+
return wasm_bindgen__convert__closures_____invoke__h4b59ba169ea05287(a, state0.b, arg0, arg1);
|
|
1048
1117
|
} finally {
|
|
1049
1118
|
state0.a = a;
|
|
1050
1119
|
}
|
|
@@ -1055,54 +1124,54 @@ function __wbg_get_imports() {
|
|
|
1055
1124
|
state0.a = state0.b = 0;
|
|
1056
1125
|
}
|
|
1057
1126
|
};
|
|
1058
|
-
imports.wbg.
|
|
1059
|
-
const ret = new
|
|
1127
|
+
imports.wbg.__wbg_new_5a79be3ab53b8aa5 = function(arg0) {
|
|
1128
|
+
const ret = new Uint8Array(arg0);
|
|
1060
1129
|
return ret;
|
|
1061
1130
|
};
|
|
1062
|
-
imports.wbg.
|
|
1063
|
-
const ret = new
|
|
1131
|
+
imports.wbg.__wbg_new_68651c719dcda04e = function() {
|
|
1132
|
+
const ret = new Map();
|
|
1064
1133
|
return ret;
|
|
1065
1134
|
};
|
|
1066
|
-
imports.wbg.
|
|
1067
|
-
const ret = new
|
|
1135
|
+
imports.wbg.__wbg_new_93d9417ed3fb115d = function(arg0) {
|
|
1136
|
+
const ret = new Date(arg0);
|
|
1068
1137
|
return ret;
|
|
1069
1138
|
};
|
|
1070
|
-
imports.wbg.
|
|
1071
|
-
const ret = new AbortController();
|
|
1072
|
-
return ret;
|
|
1073
|
-
}, arguments) };
|
|
1074
|
-
imports.wbg.__wbg_new_f6e53210afea8e45 = function() { return handleError(function () {
|
|
1139
|
+
imports.wbg.__wbg_new_9edf9838a2def39c = function() { return handleError(function () {
|
|
1075
1140
|
const ret = new Headers();
|
|
1076
1141
|
return ret;
|
|
1077
1142
|
}, arguments) };
|
|
1078
|
-
imports.wbg.
|
|
1143
|
+
imports.wbg.__wbg_new_e17d9f43105b08be = function() {
|
|
1144
|
+
const ret = new Array();
|
|
1145
|
+
return ret;
|
|
1146
|
+
};
|
|
1147
|
+
imports.wbg.__wbg_new_from_slice_92f4d78ca282a2d2 = function(arg0, arg1) {
|
|
1079
1148
|
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1080
1149
|
return ret;
|
|
1081
1150
|
};
|
|
1082
|
-
imports.wbg.
|
|
1151
|
+
imports.wbg.__wbg_new_no_args_ee98eee5275000a4 = function(arg0, arg1) {
|
|
1083
1152
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1084
1153
|
return ret;
|
|
1085
1154
|
};
|
|
1086
|
-
imports.wbg.
|
|
1155
|
+
imports.wbg.__wbg_new_with_args_02cbc439ce3fd7db = function(arg0, arg1, arg2, arg3) {
|
|
1087
1156
|
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1088
1157
|
return ret;
|
|
1089
1158
|
};
|
|
1090
|
-
imports.wbg.
|
|
1159
|
+
imports.wbg.__wbg_new_with_length_01aa0dc35aa13543 = function(arg0) {
|
|
1091
1160
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
1092
1161
|
return ret;
|
|
1093
1162
|
};
|
|
1094
|
-
imports.wbg.
|
|
1163
|
+
imports.wbg.__wbg_new_with_str_and_init_0ae7728b6ec367b1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1095
1164
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1096
1165
|
return ret;
|
|
1097
1166
|
}, arguments) };
|
|
1098
|
-
imports.wbg.
|
|
1099
|
-
const ret = arg0.next;
|
|
1100
|
-
return ret;
|
|
1101
|
-
};
|
|
1102
|
-
imports.wbg.__wbg_next_692e82279131b03c = function() { return handleError(function (arg0) {
|
|
1167
|
+
imports.wbg.__wbg_next_020810e0ae8ebcb0 = function() { return handleError(function (arg0) {
|
|
1103
1168
|
const ret = arg0.next();
|
|
1104
1169
|
return ret;
|
|
1105
1170
|
}, arguments) };
|
|
1171
|
+
imports.wbg.__wbg_next_2c826fe5dfec6b6a = function(arg0) {
|
|
1172
|
+
const ret = arg0.next;
|
|
1173
|
+
return ret;
|
|
1174
|
+
};
|
|
1106
1175
|
imports.wbg.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
|
1107
1176
|
const ret = arg0.node;
|
|
1108
1177
|
return ret;
|
|
@@ -1115,20 +1184,20 @@ function __wbg_get_imports() {
|
|
|
1115
1184
|
const ret = arg0.process;
|
|
1116
1185
|
return ret;
|
|
1117
1186
|
};
|
|
1118
|
-
imports.wbg.
|
|
1187
|
+
imports.wbg.__wbg_prototypesetcall_2a6620b6922694b2 = function(arg0, arg1, arg2) {
|
|
1119
1188
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1120
1189
|
};
|
|
1121
|
-
imports.wbg.
|
|
1190
|
+
imports.wbg.__wbg_push_df81a39d04db858c = function(arg0, arg1) {
|
|
1122
1191
|
const ret = arg0.push(arg1);
|
|
1123
1192
|
return ret;
|
|
1124
1193
|
};
|
|
1125
|
-
imports.wbg.
|
|
1126
|
-
queueMicrotask(arg0);
|
|
1127
|
-
};
|
|
1128
|
-
imports.wbg.__wbg_queueMicrotask_4488407636f5bf24 = function(arg0) {
|
|
1194
|
+
imports.wbg.__wbg_queueMicrotask_34d692c25c47d05b = function(arg0) {
|
|
1129
1195
|
const ret = arg0.queueMicrotask;
|
|
1130
1196
|
return ret;
|
|
1131
1197
|
};
|
|
1198
|
+
imports.wbg.__wbg_queueMicrotask_9d76cacb20c84d58 = function(arg0) {
|
|
1199
|
+
queueMicrotask(arg0);
|
|
1200
|
+
};
|
|
1132
1201
|
imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
1133
1202
|
arg0.randomFillSync(arg1);
|
|
1134
1203
|
}, arguments) };
|
|
@@ -1136,7 +1205,7 @@ function __wbg_get_imports() {
|
|
|
1136
1205
|
const ret = module.require;
|
|
1137
1206
|
return ret;
|
|
1138
1207
|
}, arguments) };
|
|
1139
|
-
imports.wbg.
|
|
1208
|
+
imports.wbg.__wbg_resolve_caf97c30b83f7053 = function(arg0) {
|
|
1140
1209
|
const ret = Promise.resolve(arg0);
|
|
1141
1210
|
return ret;
|
|
1142
1211
|
};
|
|
@@ -1147,93 +1216,93 @@ function __wbg_get_imports() {
|
|
|
1147
1216
|
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1148
1217
|
arg0[arg1] = arg2;
|
|
1149
1218
|
};
|
|
1150
|
-
imports.wbg.
|
|
1151
|
-
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1152
|
-
return ret;
|
|
1153
|
-
}, arguments) };
|
|
1154
|
-
imports.wbg.__wbg_set_90f6c0f7bd8c0415 = function(arg0, arg1, arg2) {
|
|
1155
|
-
arg0[arg1 >>> 0] = arg2;
|
|
1156
|
-
};
|
|
1157
|
-
imports.wbg.__wbg_set_b7f1cf4fae26fe2a = function(arg0, arg1, arg2) {
|
|
1219
|
+
imports.wbg.__wbg_set_907fb406c34a251d = function(arg0, arg1, arg2) {
|
|
1158
1220
|
const ret = arg0.set(arg1, arg2);
|
|
1159
1221
|
return ret;
|
|
1160
1222
|
};
|
|
1161
|
-
imports.wbg.
|
|
1223
|
+
imports.wbg.__wbg_set_body_3c365989753d61f4 = function(arg0, arg1) {
|
|
1162
1224
|
arg0.body = arg1;
|
|
1163
1225
|
};
|
|
1164
|
-
imports.wbg.
|
|
1226
|
+
imports.wbg.__wbg_set_c213c871859d6500 = function(arg0, arg1, arg2) {
|
|
1227
|
+
arg0[arg1 >>> 0] = arg2;
|
|
1228
|
+
};
|
|
1229
|
+
imports.wbg.__wbg_set_c2abbebe8b9ebee1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1230
|
+
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1231
|
+
return ret;
|
|
1232
|
+
}, arguments) };
|
|
1233
|
+
imports.wbg.__wbg_set_cache_2f9deb19b92b81e3 = function(arg0, arg1) {
|
|
1165
1234
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
1166
1235
|
};
|
|
1167
|
-
imports.wbg.
|
|
1236
|
+
imports.wbg.__wbg_set_credentials_f621cd2d85c0c228 = function(arg0, arg1) {
|
|
1168
1237
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1169
1238
|
};
|
|
1170
|
-
imports.wbg.
|
|
1239
|
+
imports.wbg.__wbg_set_headers_6926da238cd32ee4 = function(arg0, arg1) {
|
|
1171
1240
|
arg0.headers = arg1;
|
|
1172
1241
|
};
|
|
1173
|
-
imports.wbg.
|
|
1242
|
+
imports.wbg.__wbg_set_method_c02d8cbbe204ac2d = function(arg0, arg1, arg2) {
|
|
1174
1243
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1175
1244
|
};
|
|
1176
|
-
imports.wbg.
|
|
1245
|
+
imports.wbg.__wbg_set_mode_52ef73cfa79639cb = function(arg0, arg1) {
|
|
1177
1246
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1178
1247
|
};
|
|
1179
|
-
imports.wbg.
|
|
1248
|
+
imports.wbg.__wbg_set_signal_dda2cf7ccb6bee0f = function(arg0, arg1) {
|
|
1180
1249
|
arg0.signal = arg1;
|
|
1181
1250
|
};
|
|
1182
|
-
imports.wbg.
|
|
1251
|
+
imports.wbg.__wbg_signal_4db5aa055bf9eb9a = function(arg0) {
|
|
1183
1252
|
const ret = arg0.signal;
|
|
1184
1253
|
return ret;
|
|
1185
1254
|
};
|
|
1186
|
-
imports.wbg.
|
|
1255
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e = function() {
|
|
1187
1256
|
const ret = typeof global === 'undefined' ? null : global;
|
|
1188
1257
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1189
1258
|
};
|
|
1190
|
-
imports.wbg.
|
|
1259
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac = function() {
|
|
1191
1260
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1192
1261
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1193
1262
|
};
|
|
1194
|
-
imports.wbg.
|
|
1263
|
+
imports.wbg.__wbg_static_accessor_SELF_6fdf4b64710cc91b = function() {
|
|
1195
1264
|
const ret = typeof self === 'undefined' ? null : self;
|
|
1196
1265
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1197
1266
|
};
|
|
1198
|
-
imports.wbg.
|
|
1267
|
+
imports.wbg.__wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2 = function() {
|
|
1199
1268
|
const ret = typeof window === 'undefined' ? null : window;
|
|
1200
1269
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1201
1270
|
};
|
|
1202
|
-
imports.wbg.
|
|
1271
|
+
imports.wbg.__wbg_status_de7eed5a7a5bfd5d = function(arg0) {
|
|
1203
1272
|
const ret = arg0.status;
|
|
1204
1273
|
return ret;
|
|
1205
1274
|
};
|
|
1206
|
-
imports.wbg.
|
|
1275
|
+
imports.wbg.__wbg_stringify_b5fb28f6465d9c3e = function() { return handleError(function (arg0) {
|
|
1207
1276
|
const ret = JSON.stringify(arg0);
|
|
1208
1277
|
return ret;
|
|
1209
1278
|
}, arguments) };
|
|
1210
|
-
imports.wbg.
|
|
1279
|
+
imports.wbg.__wbg_subarray_480600f3d6a9f26c = function(arg0, arg1, arg2) {
|
|
1211
1280
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1212
1281
|
return ret;
|
|
1213
1282
|
};
|
|
1214
|
-
imports.wbg.
|
|
1283
|
+
imports.wbg.__wbg_text_dc33c15c17bdfb52 = function() { return handleError(function (arg0) {
|
|
1215
1284
|
const ret = arg0.text();
|
|
1216
1285
|
return ret;
|
|
1217
1286
|
}, arguments) };
|
|
1218
|
-
imports.wbg.
|
|
1219
|
-
const ret = arg0.then(arg1
|
|
1287
|
+
imports.wbg.__wbg_then_4f46f6544e6b4a28 = function(arg0, arg1) {
|
|
1288
|
+
const ret = arg0.then(arg1);
|
|
1220
1289
|
return ret;
|
|
1221
1290
|
};
|
|
1222
|
-
imports.wbg.
|
|
1223
|
-
const ret = arg0.then(arg1);
|
|
1291
|
+
imports.wbg.__wbg_then_70d05cf780a18d77 = function(arg0, arg1, arg2) {
|
|
1292
|
+
const ret = arg0.then(arg1, arg2);
|
|
1224
1293
|
return ret;
|
|
1225
1294
|
};
|
|
1226
|
-
imports.wbg.
|
|
1295
|
+
imports.wbg.__wbg_trace_15baa8999e3f2ed1 = function(arg0) {
|
|
1227
1296
|
console.trace(...arg0);
|
|
1228
1297
|
};
|
|
1229
|
-
imports.wbg.
|
|
1298
|
+
imports.wbg.__wbg_url_b36d2a5008eb056f = function(arg0, arg1) {
|
|
1230
1299
|
const ret = arg1.url;
|
|
1231
1300
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1232
1301
|
const len1 = WASM_VECTOR_LEN;
|
|
1233
1302
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1234
1303
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1235
1304
|
};
|
|
1236
|
-
imports.wbg.
|
|
1305
|
+
imports.wbg.__wbg_value_692627309814bb8c = function(arg0) {
|
|
1237
1306
|
const ret = arg0.value;
|
|
1238
1307
|
return ret;
|
|
1239
1308
|
};
|
|
@@ -1241,106 +1310,24 @@ function __wbg_get_imports() {
|
|
|
1241
1310
|
const ret = arg0.versions;
|
|
1242
1311
|
return ret;
|
|
1243
1312
|
};
|
|
1244
|
-
imports.wbg.
|
|
1313
|
+
imports.wbg.__wbg_warn_a2d80c28bcdb1933 = function(arg0) {
|
|
1245
1314
|
console.warn(...arg0);
|
|
1246
1315
|
};
|
|
1247
|
-
imports.wbg.__wbg_wbindgenbigintgetasi64_ac743ece6ab9bba1 = function(arg0, arg1) {
|
|
1248
|
-
const v = arg1;
|
|
1249
|
-
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
1250
|
-
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
1251
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1252
|
-
};
|
|
1253
|
-
imports.wbg.__wbg_wbindgenbooleanget_3fe6f642c7d97746 = function(arg0) {
|
|
1254
|
-
const v = arg0;
|
|
1255
|
-
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
1256
|
-
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
1257
|
-
};
|
|
1258
|
-
imports.wbg.__wbg_wbindgencbdrop_eb10308566512b88 = function(arg0) {
|
|
1259
|
-
const obj = arg0.original;
|
|
1260
|
-
if (obj.cnt-- == 1) {
|
|
1261
|
-
obj.a = 0;
|
|
1262
|
-
return true;
|
|
1263
|
-
}
|
|
1264
|
-
const ret = false;
|
|
1265
|
-
return ret;
|
|
1266
|
-
};
|
|
1267
|
-
imports.wbg.__wbg_wbindgendebugstring_99ef257a3ddda34d = function(arg0, arg1) {
|
|
1268
|
-
const ret = debugString(arg1);
|
|
1269
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1270
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1271
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1272
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1273
|
-
};
|
|
1274
|
-
imports.wbg.__wbg_wbindgenin_d7a1ee10933d2d55 = function(arg0, arg1) {
|
|
1275
|
-
const ret = arg0 in arg1;
|
|
1276
|
-
return ret;
|
|
1277
|
-
};
|
|
1278
|
-
imports.wbg.__wbg_wbindgenisbigint_ecb90cc08a5a9154 = function(arg0) {
|
|
1279
|
-
const ret = typeof(arg0) === 'bigint';
|
|
1280
|
-
return ret;
|
|
1281
|
-
};
|
|
1282
|
-
imports.wbg.__wbg_wbindgenisfunction_8cee7dce3725ae74 = function(arg0) {
|
|
1283
|
-
const ret = typeof(arg0) === 'function';
|
|
1284
|
-
return ret;
|
|
1285
|
-
};
|
|
1286
|
-
imports.wbg.__wbg_wbindgenisobject_307a53c6bd97fbf8 = function(arg0) {
|
|
1287
|
-
const val = arg0;
|
|
1288
|
-
const ret = typeof(val) === 'object' && val !== null;
|
|
1289
|
-
return ret;
|
|
1290
|
-
};
|
|
1291
|
-
imports.wbg.__wbg_wbindgenisstring_d4fa939789f003b0 = function(arg0) {
|
|
1292
|
-
const ret = typeof(arg0) === 'string';
|
|
1293
|
-
return ret;
|
|
1294
|
-
};
|
|
1295
|
-
imports.wbg.__wbg_wbindgenisundefined_c4b71d073b92f3c5 = function(arg0) {
|
|
1296
|
-
const ret = arg0 === undefined;
|
|
1297
|
-
return ret;
|
|
1298
|
-
};
|
|
1299
|
-
imports.wbg.__wbg_wbindgenjsvaleq_e6f2ad59ccae1b58 = function(arg0, arg1) {
|
|
1300
|
-
const ret = arg0 === arg1;
|
|
1301
|
-
return ret;
|
|
1302
|
-
};
|
|
1303
|
-
imports.wbg.__wbg_wbindgenjsvallooseeq_9bec8c9be826bed1 = function(arg0, arg1) {
|
|
1304
|
-
const ret = arg0 == arg1;
|
|
1305
|
-
return ret;
|
|
1306
|
-
};
|
|
1307
|
-
imports.wbg.__wbg_wbindgennumberget_f74b4c7525ac05cb = function(arg0, arg1) {
|
|
1308
|
-
const obj = arg1;
|
|
1309
|
-
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
1310
|
-
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1311
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1312
|
-
};
|
|
1313
|
-
imports.wbg.__wbg_wbindgenstringget_0f16a6ddddef376f = function(arg0, arg1) {
|
|
1314
|
-
const obj = arg1;
|
|
1315
|
-
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1316
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1317
|
-
var len1 = WASM_VECTOR_LEN;
|
|
1318
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1319
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1320
|
-
};
|
|
1321
|
-
imports.wbg.__wbg_wbindgenthrow_451ec1a8469d7eb6 = function(arg0, arg1) {
|
|
1322
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1323
|
-
};
|
|
1324
|
-
imports.wbg.__wbindgen_cast_1be559affc47552a = function(arg0, arg1) {
|
|
1325
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 507, function: Function { arguments: [], shim_idx: 508, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1326
|
-
const ret = makeMutClosure(arg0, arg1, 507, __wbg_adapter_10);
|
|
1327
|
-
return ret;
|
|
1328
|
-
};
|
|
1329
1316
|
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
1330
1317
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
1331
1318
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
1332
1319
|
return ret;
|
|
1333
1320
|
};
|
|
1321
|
+
imports.wbg.__wbindgen_cast_2fb66661e8d075cf = function(arg0, arg1) {
|
|
1322
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 553, function: Function { arguments: [Externref], shim_idx: 554, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1323
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h8bb11a3ec59bf31f, wasm_bindgen__convert__closures_____invoke__h1c715d53d5a00020);
|
|
1324
|
+
return ret;
|
|
1325
|
+
};
|
|
1334
1326
|
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
1335
1327
|
// Cast intrinsic for `U64 -> Externref`.
|
|
1336
1328
|
const ret = BigInt.asUintN(64, arg0);
|
|
1337
1329
|
return ret;
|
|
1338
1330
|
};
|
|
1339
|
-
imports.wbg.__wbindgen_cast_6caffbe795a425f3 = function(arg0, arg1) {
|
|
1340
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 550, function: Function { arguments: [Externref], shim_idx: 551, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1341
|
-
const ret = makeMutClosure(arg0, arg1, 550, __wbg_adapter_19);
|
|
1342
|
-
return ret;
|
|
1343
|
-
};
|
|
1344
1331
|
imports.wbg.__wbindgen_cast_9ae0607507abb057 = function(arg0) {
|
|
1345
1332
|
// Cast intrinsic for `I64 -> Externref`.
|
|
1346
1333
|
const ret = arg0;
|
|
@@ -1356,8 +1343,13 @@ function __wbg_get_imports() {
|
|
|
1356
1343
|
const ret = arg0;
|
|
1357
1344
|
return ret;
|
|
1358
1345
|
};
|
|
1346
|
+
imports.wbg.__wbindgen_cast_f0904d98c773eedb = function(arg0, arg1) {
|
|
1347
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 508, function: Function { arguments: [], shim_idx: 509, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1348
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__ha0787d3d14449f11, wasm_bindgen__convert__closures_____invoke__hf8ac7184f86fbcce);
|
|
1349
|
+
return ret;
|
|
1350
|
+
};
|
|
1359
1351
|
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
1360
|
-
const table = wasm.
|
|
1352
|
+
const table = wasm.__wbindgen_externrefs;
|
|
1361
1353
|
const offset = table.grow(4);
|
|
1362
1354
|
table.set(0, undefined);
|
|
1363
1355
|
table.set(offset + 0, undefined);
|
|
@@ -1370,10 +1362,6 @@ function __wbg_get_imports() {
|
|
|
1370
1362
|
return imports;
|
|
1371
1363
|
}
|
|
1372
1364
|
|
|
1373
|
-
function __wbg_init_memory(imports, memory) {
|
|
1374
|
-
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
1365
|
function __wbg_finalize_init(instance, module) {
|
|
1378
1366
|
wasm = instance.exports;
|
|
1379
1367
|
__wbg_init.__wbindgen_wasm_module = module;
|
|
@@ -1399,8 +1387,6 @@ function initSync(module) {
|
|
|
1399
1387
|
|
|
1400
1388
|
const imports = __wbg_get_imports();
|
|
1401
1389
|
|
|
1402
|
-
__wbg_init_memory(imports);
|
|
1403
|
-
|
|
1404
1390
|
if (!(module instanceof WebAssembly.Module)) {
|
|
1405
1391
|
module = new WebAssembly.Module(module);
|
|
1406
1392
|
}
|
|
@@ -1431,8 +1417,6 @@ async function __wbg_init(module_or_path) {
|
|
|
1431
1417
|
module_or_path = fetch(module_or_path);
|
|
1432
1418
|
}
|
|
1433
1419
|
|
|
1434
|
-
__wbg_init_memory(imports);
|
|
1435
|
-
|
|
1436
1420
|
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
|
1437
1421
|
|
|
1438
1422
|
return __wbg_finalize_init(instance, module);
|
package/cedarling_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@janssenproject/cedarling_wasm",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "The Cedarling is a performant local authorization service that runs the Rust Cedar Engine",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.14.0",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|