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