@learncard/didkit-plugin 1.5.36 → 1.5.37
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/dist/didkit/didkit_wasm.d.ts +2 -2
- package/dist/didkit/didkit_wasm.js +201 -226
- package/dist/didkit/didkit_wasm_bg.wasm +0 -0
- package/dist/didkit/didkit_wasm_bg.wasm.d.ts +2 -2
- package/dist/didkit-plugin.cjs.development.js +203 -220
- package/dist/didkit-plugin.cjs.development.js.map +2 -2
- package/dist/didkit-plugin.cjs.production.min.js +2 -2
- package/dist/didkit-plugin.cjs.production.min.js.map +3 -3
- package/dist/didkit-plugin.esm.js +203 -220
- package/dist/didkit-plugin.esm.js.map +2 -2
- package/dist/didkit_wasm.d.ts +2 -2
- package/dist/didkit_wasm.js +201 -226
- package/dist/didkit_wasm_bg.wasm +0 -0
- package/dist/didkit_wasm_bg.wasm.d.ts +2 -2
- package/package.json +3 -3
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
let wasm;
|
|
2
2
|
|
|
3
|
+
let WASM_VECTOR_LEN = 0;
|
|
4
|
+
|
|
3
5
|
let cachedUint8ArrayMemory0 = null;
|
|
4
6
|
|
|
5
7
|
function getUint8ArrayMemory0() {
|
|
@@ -9,29 +11,6 @@ function getUint8ArrayMemory0() {
|
|
|
9
11
|
return cachedUint8ArrayMemory0;
|
|
10
12
|
}
|
|
11
13
|
|
|
12
|
-
let cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
13
|
-
|
|
14
|
-
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
15
|
-
|
|
16
|
-
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
17
|
-
let numBytesDecoded = 0;
|
|
18
|
-
function decodeText(ptr, len) {
|
|
19
|
-
numBytesDecoded += len;
|
|
20
|
-
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
21
|
-
cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
22
|
-
cachedTextDecoder.decode();
|
|
23
|
-
numBytesDecoded = len;
|
|
24
|
-
}
|
|
25
|
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function getStringFromWasm0(ptr, len) {
|
|
29
|
-
ptr = ptr >>> 0;
|
|
30
|
-
return decodeText(ptr, len);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
let WASM_VECTOR_LEN = 0;
|
|
34
|
-
|
|
35
14
|
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
|
36
15
|
|
|
37
16
|
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
@@ -95,6 +74,15 @@ function getDataViewMemory0() {
|
|
|
95
74
|
return cachedDataViewMemory0;
|
|
96
75
|
}
|
|
97
76
|
|
|
77
|
+
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
78
|
+
|
|
79
|
+
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
80
|
+
|
|
81
|
+
function getStringFromWasm0(ptr, len) {
|
|
82
|
+
ptr = ptr >>> 0;
|
|
83
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
84
|
+
}
|
|
85
|
+
|
|
98
86
|
function addToExternrefTable0(obj) {
|
|
99
87
|
const idx = wasm.__externref_table_alloc();
|
|
100
88
|
wasm.__wbindgen_export_4.set(idx, obj);
|
|
@@ -119,6 +107,37 @@ function isLikeNone(x) {
|
|
|
119
107
|
return x === undefined || x === null;
|
|
120
108
|
}
|
|
121
109
|
|
|
110
|
+
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
111
|
+
? { register: () => {}, unregister: () => {} }
|
|
112
|
+
: new FinalizationRegistry(state => {
|
|
113
|
+
wasm.__wbindgen_export_5.get(state.dtor)(state.a, state.b)
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
117
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
118
|
+
const real = (...args) => {
|
|
119
|
+
// First up with a closure we increment the internal reference
|
|
120
|
+
// count. This ensures that the Rust closure environment won't
|
|
121
|
+
// be deallocated while we're invoking it.
|
|
122
|
+
state.cnt++;
|
|
123
|
+
const a = state.a;
|
|
124
|
+
state.a = 0;
|
|
125
|
+
try {
|
|
126
|
+
return f(a, state.b, ...args);
|
|
127
|
+
} finally {
|
|
128
|
+
if (--state.cnt === 0) {
|
|
129
|
+
wasm.__wbindgen_export_5.get(state.dtor)(a, state.b);
|
|
130
|
+
CLOSURE_DTORS.unregister(state);
|
|
131
|
+
} else {
|
|
132
|
+
state.a = a;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
};
|
|
136
|
+
real.original = state;
|
|
137
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
138
|
+
return real;
|
|
139
|
+
}
|
|
140
|
+
|
|
122
141
|
function debugString(val) {
|
|
123
142
|
// primitive types
|
|
124
143
|
const type = typeof val;
|
|
@@ -183,40 +202,6 @@ function debugString(val) {
|
|
|
183
202
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
184
203
|
return className;
|
|
185
204
|
}
|
|
186
|
-
|
|
187
|
-
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
188
|
-
? { register: () => {}, unregister: () => {} }
|
|
189
|
-
: new FinalizationRegistry(
|
|
190
|
-
state => {
|
|
191
|
-
wasm.__wbindgen_export_5.get(state.dtor)(state.a, state.b);
|
|
192
|
-
}
|
|
193
|
-
);
|
|
194
|
-
|
|
195
|
-
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
196
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
197
|
-
const real = (...args) => {
|
|
198
|
-
|
|
199
|
-
// First up with a closure we increment the internal reference
|
|
200
|
-
// count. This ensures that the Rust closure environment won't
|
|
201
|
-
// be deallocated while we're invoking it.
|
|
202
|
-
state.cnt++;
|
|
203
|
-
const a = state.a;
|
|
204
|
-
state.a = 0;
|
|
205
|
-
try {
|
|
206
|
-
return f(a, state.b, ...args);
|
|
207
|
-
} finally {
|
|
208
|
-
if (--state.cnt === 0) {
|
|
209
|
-
wasm.__wbindgen_export_5.get(state.dtor)(a, state.b);
|
|
210
|
-
CLOSURE_DTORS.unregister(state);
|
|
211
|
-
} else {
|
|
212
|
-
state.a = a;
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
};
|
|
216
|
-
real.original = state;
|
|
217
|
-
CLOSURE_DTORS.register(real, state, state);
|
|
218
|
-
return real;
|
|
219
|
-
}
|
|
220
205
|
/**
|
|
221
206
|
* @returns {string}
|
|
222
207
|
*/
|
|
@@ -824,20 +809,18 @@ export function contextLoader(url) {
|
|
|
824
809
|
return ret;
|
|
825
810
|
}
|
|
826
811
|
|
|
827
|
-
function
|
|
828
|
-
wasm.
|
|
812
|
+
function __wbg_adapter_54(arg0, arg1, arg2) {
|
|
813
|
+
wasm.closure4184_externref_shim(arg0, arg1, arg2);
|
|
829
814
|
}
|
|
830
815
|
|
|
831
|
-
function
|
|
832
|
-
wasm.
|
|
816
|
+
function __wbg_adapter_222(arg0, arg1, arg2, arg3) {
|
|
817
|
+
wasm.closure4586_externref_shim(arg0, arg1, arg2, arg3);
|
|
833
818
|
}
|
|
834
819
|
|
|
835
820
|
const __wbindgen_enum_RequestCredentials = ["omit", "same-origin", "include"];
|
|
836
821
|
|
|
837
822
|
const __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate"];
|
|
838
823
|
|
|
839
|
-
const EXPECTED_RESPONSE_TYPES = new Set(['basic', 'cors', 'default']);
|
|
840
|
-
|
|
841
824
|
async function __wbg_load(module, imports) {
|
|
842
825
|
if (typeof Response === 'function' && module instanceof Response) {
|
|
843
826
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
@@ -845,9 +828,7 @@ async function __wbg_load(module, imports) {
|
|
|
845
828
|
return await WebAssembly.instantiateStreaming(module, imports);
|
|
846
829
|
|
|
847
830
|
} catch (e) {
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
|
|
831
|
+
if (module.headers.get('Content-Type') != 'application/wasm') {
|
|
851
832
|
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
852
833
|
|
|
853
834
|
} else {
|
|
@@ -874,10 +855,6 @@ async function __wbg_load(module, imports) {
|
|
|
874
855
|
function __wbg_get_imports() {
|
|
875
856
|
const imports = {};
|
|
876
857
|
imports.wbg = {};
|
|
877
|
-
imports.wbg.__wbg_Error_1f3748b298f99708 = function(arg0, arg1) {
|
|
878
|
-
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
879
|
-
return ret;
|
|
880
|
-
};
|
|
881
858
|
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
882
859
|
const ret = String(arg1);
|
|
883
860
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -885,21 +862,25 @@ function __wbg_get_imports() {
|
|
|
885
862
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
886
863
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
887
864
|
};
|
|
888
|
-
imports.wbg.
|
|
865
|
+
imports.wbg.__wbg_abort_775ef1d17fc65868 = function(arg0) {
|
|
889
866
|
arg0.abort();
|
|
890
867
|
};
|
|
891
|
-
imports.wbg.
|
|
868
|
+
imports.wbg.__wbg_append_8c7dd8d641a5f01b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
892
869
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
893
870
|
}, arguments) };
|
|
894
|
-
imports.wbg.
|
|
871
|
+
imports.wbg.__wbg_arrayBuffer_d1b44c4390db422f = function() { return handleError(function (arg0) {
|
|
895
872
|
const ret = arg0.arrayBuffer();
|
|
896
873
|
return ret;
|
|
897
874
|
}, arguments) };
|
|
898
|
-
imports.wbg.
|
|
875
|
+
imports.wbg.__wbg_buffer_609cc3eee51ed158 = function(arg0) {
|
|
876
|
+
const ret = arg0.buffer;
|
|
877
|
+
return ret;
|
|
878
|
+
};
|
|
879
|
+
imports.wbg.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
|
|
899
880
|
const ret = arg0.call(arg1);
|
|
900
881
|
return ret;
|
|
901
882
|
}, arguments) };
|
|
902
|
-
imports.wbg.
|
|
883
|
+
imports.wbg.__wbg_call_7cccdd69e0791ae2 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
903
884
|
const ret = arg0.call(arg1, arg2);
|
|
904
885
|
return ret;
|
|
905
886
|
}, arguments) };
|
|
@@ -911,15 +892,15 @@ function __wbg_get_imports() {
|
|
|
911
892
|
const ret = arg0.crypto;
|
|
912
893
|
return ret;
|
|
913
894
|
};
|
|
914
|
-
imports.wbg.
|
|
895
|
+
imports.wbg.__wbg_done_769e5ede4b31c67b = function(arg0) {
|
|
915
896
|
const ret = arg0.done;
|
|
916
897
|
return ret;
|
|
917
898
|
};
|
|
918
|
-
imports.wbg.
|
|
899
|
+
imports.wbg.__wbg_entries_3265d4158b33e5dc = function(arg0) {
|
|
919
900
|
const ret = Object.entries(arg0);
|
|
920
901
|
return ret;
|
|
921
902
|
};
|
|
922
|
-
imports.wbg.
|
|
903
|
+
imports.wbg.__wbg_fetch_509096533071c657 = function(arg0, arg1) {
|
|
923
904
|
const ret = arg0.fetch(arg1);
|
|
924
905
|
return ret;
|
|
925
906
|
};
|
|
@@ -927,7 +908,7 @@ function __wbg_get_imports() {
|
|
|
927
908
|
const ret = fetch(arg0);
|
|
928
909
|
return ret;
|
|
929
910
|
};
|
|
930
|
-
imports.wbg.
|
|
911
|
+
imports.wbg.__wbg_from_2a5d3e218e67aa85 = function(arg0) {
|
|
931
912
|
const ret = Array.from(arg0);
|
|
932
913
|
return ret;
|
|
933
914
|
};
|
|
@@ -944,27 +925,27 @@ function __wbg_get_imports() {
|
|
|
944
925
|
imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) {
|
|
945
926
|
arg0.getRandomValues(arg1);
|
|
946
927
|
}, arguments) };
|
|
947
|
-
imports.wbg.
|
|
928
|
+
imports.wbg.__wbg_getTime_46267b1c24877e30 = function(arg0) {
|
|
948
929
|
const ret = arg0.getTime();
|
|
949
930
|
return ret;
|
|
950
931
|
};
|
|
951
|
-
imports.wbg.
|
|
932
|
+
imports.wbg.__wbg_get_67b2ba62fc30de12 = function() { return handleError(function (arg0, arg1) {
|
|
952
933
|
const ret = Reflect.get(arg0, arg1);
|
|
953
934
|
return ret;
|
|
954
935
|
}, arguments) };
|
|
955
|
-
imports.wbg.
|
|
936
|
+
imports.wbg.__wbg_get_b9b93047fe3cf45b = function(arg0, arg1) {
|
|
956
937
|
const ret = arg0[arg1 >>> 0];
|
|
957
938
|
return ret;
|
|
958
939
|
};
|
|
959
|
-
imports.wbg.
|
|
940
|
+
imports.wbg.__wbg_has_a5ea9117f258a0ec = function() { return handleError(function (arg0, arg1) {
|
|
960
941
|
const ret = Reflect.has(arg0, arg1);
|
|
961
942
|
return ret;
|
|
962
943
|
}, arguments) };
|
|
963
|
-
imports.wbg.
|
|
944
|
+
imports.wbg.__wbg_headers_9cb51cfd2ac780a4 = function(arg0) {
|
|
964
945
|
const ret = arg0.headers;
|
|
965
946
|
return ret;
|
|
966
947
|
};
|
|
967
|
-
imports.wbg.
|
|
948
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function(arg0) {
|
|
968
949
|
let result;
|
|
969
950
|
try {
|
|
970
951
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -974,7 +955,7 @@ function __wbg_get_imports() {
|
|
|
974
955
|
const ret = result;
|
|
975
956
|
return ret;
|
|
976
957
|
};
|
|
977
|
-
imports.wbg.
|
|
958
|
+
imports.wbg.__wbg_instanceof_Map_f3469ce2244d2430 = function(arg0) {
|
|
978
959
|
let result;
|
|
979
960
|
try {
|
|
980
961
|
result = arg0 instanceof Map;
|
|
@@ -984,7 +965,7 @@ function __wbg_get_imports() {
|
|
|
984
965
|
const ret = result;
|
|
985
966
|
return ret;
|
|
986
967
|
};
|
|
987
|
-
imports.wbg.
|
|
968
|
+
imports.wbg.__wbg_instanceof_Response_f2cc20d9f7dfd644 = function(arg0) {
|
|
988
969
|
let result;
|
|
989
970
|
try {
|
|
990
971
|
result = arg0 instanceof Response;
|
|
@@ -994,7 +975,7 @@ function __wbg_get_imports() {
|
|
|
994
975
|
const ret = result;
|
|
995
976
|
return ret;
|
|
996
977
|
};
|
|
997
|
-
imports.wbg.
|
|
978
|
+
imports.wbg.__wbg_instanceof_Uint8Array_17156bcf118086a9 = function(arg0) {
|
|
998
979
|
let result;
|
|
999
980
|
try {
|
|
1000
981
|
result = arg0 instanceof Uint8Array;
|
|
@@ -1004,27 +985,27 @@ function __wbg_get_imports() {
|
|
|
1004
985
|
const ret = result;
|
|
1005
986
|
return ret;
|
|
1006
987
|
};
|
|
1007
|
-
imports.wbg.
|
|
988
|
+
imports.wbg.__wbg_isArray_a1eab7e0d067391b = function(arg0) {
|
|
1008
989
|
const ret = Array.isArray(arg0);
|
|
1009
990
|
return ret;
|
|
1010
991
|
};
|
|
1011
|
-
imports.wbg.
|
|
992
|
+
imports.wbg.__wbg_isSafeInteger_343e2beeeece1bb0 = function(arg0) {
|
|
1012
993
|
const ret = Number.isSafeInteger(arg0);
|
|
1013
994
|
return ret;
|
|
1014
995
|
};
|
|
1015
|
-
imports.wbg.
|
|
996
|
+
imports.wbg.__wbg_iterator_9a24c88df860dc65 = function() {
|
|
1016
997
|
const ret = Symbol.iterator;
|
|
1017
998
|
return ret;
|
|
1018
999
|
};
|
|
1019
|
-
imports.wbg.
|
|
1000
|
+
imports.wbg.__wbg_keys_5c77a08ddc2fb8a6 = function(arg0) {
|
|
1020
1001
|
const ret = Object.keys(arg0);
|
|
1021
1002
|
return ret;
|
|
1022
1003
|
};
|
|
1023
|
-
imports.wbg.
|
|
1004
|
+
imports.wbg.__wbg_length_a446193dc22c12f8 = function(arg0) {
|
|
1024
1005
|
const ret = arg0.length;
|
|
1025
1006
|
return ret;
|
|
1026
1007
|
};
|
|
1027
|
-
imports.wbg.
|
|
1008
|
+
imports.wbg.__wbg_length_e2d2a49132c1b256 = function(arg0) {
|
|
1028
1009
|
const ret = arg0.length;
|
|
1029
1010
|
return ret;
|
|
1030
1011
|
};
|
|
@@ -1036,38 +1017,22 @@ function __wbg_get_imports() {
|
|
|
1036
1017
|
const ret = arg0.msCrypto;
|
|
1037
1018
|
return ret;
|
|
1038
1019
|
};
|
|
1039
|
-
imports.wbg.
|
|
1020
|
+
imports.wbg.__wbg_new0_f788a2397c7ca929 = function() {
|
|
1040
1021
|
const ret = new Date();
|
|
1041
1022
|
return ret;
|
|
1042
1023
|
};
|
|
1043
|
-
imports.wbg.
|
|
1024
|
+
imports.wbg.__wbg_new_018dcc2d6c8c2f6a = function() { return handleError(function () {
|
|
1044
1025
|
const ret = new Headers();
|
|
1045
1026
|
return ret;
|
|
1046
1027
|
}, arguments) };
|
|
1047
|
-
imports.wbg.
|
|
1048
|
-
const ret = new Object();
|
|
1049
|
-
return ret;
|
|
1050
|
-
};
|
|
1051
|
-
imports.wbg.__wbg_new_56407f99198feff7 = function() {
|
|
1052
|
-
const ret = new Map();
|
|
1053
|
-
return ret;
|
|
1054
|
-
};
|
|
1055
|
-
imports.wbg.__wbg_new_6a8b180049d9484e = function() { return handleError(function () {
|
|
1056
|
-
const ret = new AbortController();
|
|
1057
|
-
return ret;
|
|
1058
|
-
}, arguments) };
|
|
1059
|
-
imports.wbg.__wbg_new_9190433fb67ed635 = function(arg0) {
|
|
1060
|
-
const ret = new Uint8Array(arg0);
|
|
1061
|
-
return ret;
|
|
1062
|
-
};
|
|
1063
|
-
imports.wbg.__wbg_new_d5e3800b120e37e1 = function(arg0, arg1) {
|
|
1028
|
+
imports.wbg.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
|
|
1064
1029
|
try {
|
|
1065
1030
|
var state0 = {a: arg0, b: arg1};
|
|
1066
1031
|
var cb0 = (arg0, arg1) => {
|
|
1067
1032
|
const a = state0.a;
|
|
1068
1033
|
state0.a = 0;
|
|
1069
1034
|
try {
|
|
1070
|
-
return
|
|
1035
|
+
return __wbg_adapter_222(a, state0.b, arg0, arg1);
|
|
1071
1036
|
} finally {
|
|
1072
1037
|
state0.a = a;
|
|
1073
1038
|
}
|
|
@@ -1078,39 +1043,55 @@ function __wbg_get_imports() {
|
|
|
1078
1043
|
state0.a = state0.b = 0;
|
|
1079
1044
|
}
|
|
1080
1045
|
};
|
|
1081
|
-
imports.wbg.
|
|
1046
|
+
imports.wbg.__wbg_new_405e22f390576ce2 = function() {
|
|
1047
|
+
const ret = new Object();
|
|
1048
|
+
return ret;
|
|
1049
|
+
};
|
|
1050
|
+
imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
|
|
1051
|
+
const ret = new Map();
|
|
1052
|
+
return ret;
|
|
1053
|
+
};
|
|
1054
|
+
imports.wbg.__wbg_new_78feb108b6472713 = function() {
|
|
1082
1055
|
const ret = new Array();
|
|
1083
1056
|
return ret;
|
|
1084
1057
|
};
|
|
1085
|
-
imports.wbg.
|
|
1086
|
-
const ret = new Uint8Array(
|
|
1058
|
+
imports.wbg.__wbg_new_a12002a7f91c75be = function(arg0) {
|
|
1059
|
+
const ret = new Uint8Array(arg0);
|
|
1087
1060
|
return ret;
|
|
1088
1061
|
};
|
|
1089
|
-
imports.wbg.
|
|
1062
|
+
imports.wbg.__wbg_new_e25e5aab09ff45db = function() { return handleError(function () {
|
|
1063
|
+
const ret = new AbortController();
|
|
1064
|
+
return ret;
|
|
1065
|
+
}, arguments) };
|
|
1066
|
+
imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
|
1090
1067
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1091
1068
|
return ret;
|
|
1092
1069
|
};
|
|
1093
|
-
imports.wbg.
|
|
1070
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(arg0, arg1, arg2) {
|
|
1071
|
+
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
1072
|
+
return ret;
|
|
1073
|
+
};
|
|
1074
|
+
imports.wbg.__wbg_newwithlength_a381634e90c276d4 = function(arg0) {
|
|
1094
1075
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
1095
1076
|
return ret;
|
|
1096
1077
|
};
|
|
1097
|
-
imports.wbg.
|
|
1078
|
+
imports.wbg.__wbg_newwithstrandinit_06c535e0a867c635 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1098
1079
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1099
1080
|
return ret;
|
|
1100
1081
|
}, arguments) };
|
|
1101
|
-
imports.wbg.
|
|
1102
|
-
const ret = arg0.next();
|
|
1103
|
-
return ret;
|
|
1104
|
-
}, arguments) };
|
|
1105
|
-
imports.wbg.__wbg_next_3de8f2669431a3ff = function(arg0) {
|
|
1082
|
+
imports.wbg.__wbg_next_25feadfc0913fea9 = function(arg0) {
|
|
1106
1083
|
const ret = arg0.next;
|
|
1107
1084
|
return ret;
|
|
1108
1085
|
};
|
|
1086
|
+
imports.wbg.__wbg_next_6574e1a8a62d1055 = function() { return handleError(function (arg0) {
|
|
1087
|
+
const ret = arg0.next();
|
|
1088
|
+
return ret;
|
|
1089
|
+
}, arguments) };
|
|
1109
1090
|
imports.wbg.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
|
1110
1091
|
const ret = arg0.node;
|
|
1111
1092
|
return ret;
|
|
1112
1093
|
};
|
|
1113
|
-
imports.wbg.
|
|
1094
|
+
imports.wbg.__wbg_now_d18023d54d4e5500 = function(arg0) {
|
|
1114
1095
|
const ret = arg0.now();
|
|
1115
1096
|
return ret;
|
|
1116
1097
|
};
|
|
@@ -1118,20 +1099,17 @@ function __wbg_get_imports() {
|
|
|
1118
1099
|
const ret = arg0.process;
|
|
1119
1100
|
return ret;
|
|
1120
1101
|
};
|
|
1121
|
-
imports.wbg.
|
|
1122
|
-
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1123
|
-
};
|
|
1124
|
-
imports.wbg.__wbg_push_cd3ac7d5b094565d = function(arg0, arg1) {
|
|
1102
|
+
imports.wbg.__wbg_push_737cfc8c1432c2c6 = function(arg0, arg1) {
|
|
1125
1103
|
const ret = arg0.push(arg1);
|
|
1126
1104
|
return ret;
|
|
1127
1105
|
};
|
|
1128
|
-
imports.wbg.
|
|
1106
|
+
imports.wbg.__wbg_queueMicrotask_97d92b4fcc8a61c5 = function(arg0) {
|
|
1107
|
+
queueMicrotask(arg0);
|
|
1108
|
+
};
|
|
1109
|
+
imports.wbg.__wbg_queueMicrotask_d3219def82552485 = function(arg0) {
|
|
1129
1110
|
const ret = arg0.queueMicrotask;
|
|
1130
1111
|
return ret;
|
|
1131
1112
|
};
|
|
1132
|
-
imports.wbg.__wbg_queueMicrotask_f24a794d09c42640 = function(arg0) {
|
|
1133
|
-
queueMicrotask(arg0);
|
|
1134
|
-
};
|
|
1135
1113
|
imports.wbg.__wbg_randomFillSync_994ac6d9ade7a695 = function(arg0, arg1, arg2) {
|
|
1136
1114
|
arg0.randomFillSync(getArrayU8FromWasm0(arg1, arg2));
|
|
1137
1115
|
};
|
|
@@ -1146,7 +1124,7 @@ function __wbg_get_imports() {
|
|
|
1146
1124
|
const ret = module.require;
|
|
1147
1125
|
return ret;
|
|
1148
1126
|
}, arguments) };
|
|
1149
|
-
imports.wbg.
|
|
1127
|
+
imports.wbg.__wbg_resolve_4851785c9c5f573d = function(arg0) {
|
|
1150
1128
|
const ret = Promise.resolve(arg0);
|
|
1151
1129
|
return ret;
|
|
1152
1130
|
};
|
|
@@ -1154,50 +1132,50 @@ function __wbg_get_imports() {
|
|
|
1154
1132
|
const ret = self.self;
|
|
1155
1133
|
return ret;
|
|
1156
1134
|
}, arguments) };
|
|
1157
|
-
imports.wbg.
|
|
1158
|
-
arg0
|
|
1159
|
-
};
|
|
1160
|
-
imports.wbg.__wbg_set_31197016f65a6a19 = function(arg0, arg1, arg2) {
|
|
1161
|
-
const ret = arg0.set(arg1, arg2);
|
|
1162
|
-
return ret;
|
|
1135
|
+
imports.wbg.__wbg_set_37837023f3d740e8 = function(arg0, arg1, arg2) {
|
|
1136
|
+
arg0[arg1 >>> 0] = arg2;
|
|
1163
1137
|
};
|
|
1164
1138
|
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1165
1139
|
arg0[arg1] = arg2;
|
|
1166
1140
|
};
|
|
1167
|
-
imports.wbg.
|
|
1141
|
+
imports.wbg.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) {
|
|
1142
|
+
arg0.set(arg1, arg2 >>> 0);
|
|
1143
|
+
};
|
|
1144
|
+
imports.wbg.__wbg_set_8fc6bf8a5b1071d1 = function(arg0, arg1, arg2) {
|
|
1145
|
+
const ret = arg0.set(arg1, arg2);
|
|
1146
|
+
return ret;
|
|
1147
|
+
};
|
|
1148
|
+
imports.wbg.__wbg_set_bb8cecf6a62b9f46 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1168
1149
|
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1169
1150
|
return ret;
|
|
1170
1151
|
}, arguments) };
|
|
1171
|
-
imports.wbg.
|
|
1172
|
-
arg0[arg1 >>> 0] = arg2;
|
|
1173
|
-
};
|
|
1174
|
-
imports.wbg.__wbg_setbody_e324371c31597f2a = function(arg0, arg1) {
|
|
1152
|
+
imports.wbg.__wbg_setbody_5923b78a95eedf29 = function(arg0, arg1) {
|
|
1175
1153
|
arg0.body = arg1;
|
|
1176
1154
|
};
|
|
1177
|
-
imports.wbg.
|
|
1155
|
+
imports.wbg.__wbg_setcredentials_c3a22f1cd105a2c6 = function(arg0, arg1) {
|
|
1178
1156
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1179
1157
|
};
|
|
1180
|
-
imports.wbg.
|
|
1158
|
+
imports.wbg.__wbg_setheaders_834c0bdb6a8949ad = function(arg0, arg1) {
|
|
1181
1159
|
arg0.headers = arg1;
|
|
1182
1160
|
};
|
|
1183
|
-
imports.wbg.
|
|
1161
|
+
imports.wbg.__wbg_setmethod_3c5280fe5d890842 = function(arg0, arg1, arg2) {
|
|
1184
1162
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1185
1163
|
};
|
|
1186
|
-
imports.wbg.
|
|
1164
|
+
imports.wbg.__wbg_setmode_5dc300b865044b65 = function(arg0, arg1) {
|
|
1187
1165
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1188
1166
|
};
|
|
1189
|
-
imports.wbg.
|
|
1167
|
+
imports.wbg.__wbg_setsignal_75b21ef3a81de905 = function(arg0, arg1) {
|
|
1190
1168
|
arg0.signal = arg1;
|
|
1191
1169
|
};
|
|
1192
|
-
imports.wbg.
|
|
1170
|
+
imports.wbg.__wbg_signal_aaf9ad74119f20a4 = function(arg0) {
|
|
1193
1171
|
const ret = arg0.signal;
|
|
1194
1172
|
return ret;
|
|
1195
1173
|
};
|
|
1196
|
-
imports.wbg.
|
|
1174
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_88a902d13a557d07 = function() {
|
|
1197
1175
|
const ret = typeof global === 'undefined' ? null : global;
|
|
1198
1176
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1199
1177
|
};
|
|
1200
|
-
imports.wbg.
|
|
1178
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0 = function() {
|
|
1201
1179
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1202
1180
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1203
1181
|
};
|
|
@@ -1205,42 +1183,42 @@ function __wbg_get_imports() {
|
|
|
1205
1183
|
const ret = module;
|
|
1206
1184
|
return ret;
|
|
1207
1185
|
};
|
|
1208
|
-
imports.wbg.
|
|
1186
|
+
imports.wbg.__wbg_static_accessor_SELF_37c5d418e4bf5819 = function() {
|
|
1209
1187
|
const ret = typeof self === 'undefined' ? null : self;
|
|
1210
1188
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1211
1189
|
};
|
|
1212
|
-
imports.wbg.
|
|
1190
|
+
imports.wbg.__wbg_static_accessor_WINDOW_5de37043a91a9c40 = function() {
|
|
1213
1191
|
const ret = typeof window === 'undefined' ? null : window;
|
|
1214
1192
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1215
1193
|
};
|
|
1216
|
-
imports.wbg.
|
|
1194
|
+
imports.wbg.__wbg_status_f6360336ca686bf0 = function(arg0) {
|
|
1217
1195
|
const ret = arg0.status;
|
|
1218
1196
|
return ret;
|
|
1219
1197
|
};
|
|
1220
|
-
imports.wbg.
|
|
1198
|
+
imports.wbg.__wbg_stringify_f7ed6987935b4a24 = function() { return handleError(function (arg0) {
|
|
1221
1199
|
const ret = JSON.stringify(arg0);
|
|
1222
1200
|
return ret;
|
|
1223
1201
|
}, arguments) };
|
|
1224
|
-
imports.wbg.
|
|
1202
|
+
imports.wbg.__wbg_subarray_aa9065fa9dc5df96 = function(arg0, arg1, arg2) {
|
|
1225
1203
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1226
1204
|
return ret;
|
|
1227
1205
|
};
|
|
1228
|
-
imports.wbg.
|
|
1229
|
-
const ret = arg0.then(arg1
|
|
1206
|
+
imports.wbg.__wbg_then_44b73946d2fb3e7d = function(arg0, arg1) {
|
|
1207
|
+
const ret = arg0.then(arg1);
|
|
1230
1208
|
return ret;
|
|
1231
1209
|
};
|
|
1232
|
-
imports.wbg.
|
|
1233
|
-
const ret = arg0.then(arg1);
|
|
1210
|
+
imports.wbg.__wbg_then_48b406749878a531 = function(arg0, arg1, arg2) {
|
|
1211
|
+
const ret = arg0.then(arg1, arg2);
|
|
1234
1212
|
return ret;
|
|
1235
1213
|
};
|
|
1236
|
-
imports.wbg.
|
|
1214
|
+
imports.wbg.__wbg_url_ae10c34ca209681d = function(arg0, arg1) {
|
|
1237
1215
|
const ret = arg1.url;
|
|
1238
1216
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1239
1217
|
const len1 = WASM_VECTOR_LEN;
|
|
1240
1218
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1241
1219
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1242
1220
|
};
|
|
1243
|
-
imports.wbg.
|
|
1221
|
+
imports.wbg.__wbg_value_cd1ffa7b1ab794f1 = function(arg0) {
|
|
1244
1222
|
const ret = arg0.value;
|
|
1245
1223
|
return ret;
|
|
1246
1224
|
};
|
|
@@ -1248,18 +1226,30 @@ function __wbg_get_imports() {
|
|
|
1248
1226
|
const ret = arg0.versions;
|
|
1249
1227
|
return ret;
|
|
1250
1228
|
};
|
|
1251
|
-
imports.wbg.
|
|
1229
|
+
imports.wbg.__wbindgen_bigint_from_i128 = function(arg0, arg1) {
|
|
1230
|
+
const ret = arg0 << BigInt(64) | BigInt.asUintN(64, arg1);
|
|
1231
|
+
return ret;
|
|
1232
|
+
};
|
|
1233
|
+
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {
|
|
1234
|
+
const ret = arg0;
|
|
1235
|
+
return ret;
|
|
1236
|
+
};
|
|
1237
|
+
imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
1238
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
1239
|
+
return ret;
|
|
1240
|
+
};
|
|
1241
|
+
imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
|
|
1252
1242
|
const v = arg1;
|
|
1253
1243
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
1254
1244
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
1255
1245
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1256
1246
|
};
|
|
1257
|
-
imports.wbg.
|
|
1247
|
+
imports.wbg.__wbindgen_boolean_get = function(arg0) {
|
|
1258
1248
|
const v = arg0;
|
|
1259
|
-
const ret = typeof(v) === 'boolean' ? v :
|
|
1260
|
-
return
|
|
1249
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
1250
|
+
return ret;
|
|
1261
1251
|
};
|
|
1262
|
-
imports.wbg.
|
|
1252
|
+
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
1263
1253
|
const obj = arg0.original;
|
|
1264
1254
|
if (obj.cnt-- == 1) {
|
|
1265
1255
|
obj.a = 0;
|
|
@@ -1268,57 +1258,83 @@ function __wbg_get_imports() {
|
|
|
1268
1258
|
const ret = false;
|
|
1269
1259
|
return ret;
|
|
1270
1260
|
};
|
|
1271
|
-
imports.wbg.
|
|
1261
|
+
imports.wbg.__wbindgen_closure_wrapper12250 = function(arg0, arg1, arg2) {
|
|
1262
|
+
const ret = makeMutClosure(arg0, arg1, 4185, __wbg_adapter_54);
|
|
1263
|
+
return ret;
|
|
1264
|
+
};
|
|
1265
|
+
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
1272
1266
|
const ret = debugString(arg1);
|
|
1273
1267
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1274
1268
|
const len1 = WASM_VECTOR_LEN;
|
|
1275
1269
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1276
1270
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1277
1271
|
};
|
|
1278
|
-
imports.wbg.
|
|
1272
|
+
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
|
|
1273
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
1274
|
+
return ret;
|
|
1275
|
+
};
|
|
1276
|
+
imports.wbg.__wbindgen_in = function(arg0, arg1) {
|
|
1279
1277
|
const ret = arg0 in arg1;
|
|
1280
1278
|
return ret;
|
|
1281
1279
|
};
|
|
1282
|
-
imports.wbg.
|
|
1280
|
+
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
1281
|
+
const table = wasm.__wbindgen_export_4;
|
|
1282
|
+
const offset = table.grow(4);
|
|
1283
|
+
table.set(0, undefined);
|
|
1284
|
+
table.set(offset + 0, undefined);
|
|
1285
|
+
table.set(offset + 1, null);
|
|
1286
|
+
table.set(offset + 2, true);
|
|
1287
|
+
table.set(offset + 3, false);
|
|
1288
|
+
;
|
|
1289
|
+
};
|
|
1290
|
+
imports.wbg.__wbindgen_is_bigint = function(arg0) {
|
|
1283
1291
|
const ret = typeof(arg0) === 'bigint';
|
|
1284
1292
|
return ret;
|
|
1285
1293
|
};
|
|
1286
|
-
imports.wbg.
|
|
1294
|
+
imports.wbg.__wbindgen_is_function = function(arg0) {
|
|
1287
1295
|
const ret = typeof(arg0) === 'function';
|
|
1288
1296
|
return ret;
|
|
1289
1297
|
};
|
|
1290
|
-
imports.wbg.
|
|
1298
|
+
imports.wbg.__wbindgen_is_null = function(arg0) {
|
|
1291
1299
|
const ret = arg0 === null;
|
|
1292
1300
|
return ret;
|
|
1293
1301
|
};
|
|
1294
|
-
imports.wbg.
|
|
1302
|
+
imports.wbg.__wbindgen_is_object = function(arg0) {
|
|
1295
1303
|
const val = arg0;
|
|
1296
1304
|
const ret = typeof(val) === 'object' && val !== null;
|
|
1297
1305
|
return ret;
|
|
1298
1306
|
};
|
|
1299
|
-
imports.wbg.
|
|
1307
|
+
imports.wbg.__wbindgen_is_string = function(arg0) {
|
|
1300
1308
|
const ret = typeof(arg0) === 'string';
|
|
1301
1309
|
return ret;
|
|
1302
1310
|
};
|
|
1303
|
-
imports.wbg.
|
|
1311
|
+
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
1304
1312
|
const ret = arg0 === undefined;
|
|
1305
1313
|
return ret;
|
|
1306
1314
|
};
|
|
1307
|
-
imports.wbg.
|
|
1315
|
+
imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) {
|
|
1308
1316
|
const ret = arg0 === arg1;
|
|
1309
1317
|
return ret;
|
|
1310
1318
|
};
|
|
1311
|
-
imports.wbg.
|
|
1319
|
+
imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
1312
1320
|
const ret = arg0 == arg1;
|
|
1313
1321
|
return ret;
|
|
1314
1322
|
};
|
|
1315
|
-
imports.wbg.
|
|
1323
|
+
imports.wbg.__wbindgen_memory = function() {
|
|
1324
|
+
const ret = wasm.memory;
|
|
1325
|
+
return ret;
|
|
1326
|
+
};
|
|
1327
|
+
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
|
|
1316
1328
|
const obj = arg1;
|
|
1317
1329
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
1318
1330
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1319
1331
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1320
1332
|
};
|
|
1321
|
-
imports.wbg.
|
|
1333
|
+
imports.wbg.__wbindgen_number_new = function(arg0) {
|
|
1334
|
+
const ret = arg0;
|
|
1335
|
+
return ret;
|
|
1336
|
+
};
|
|
1337
|
+
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
1322
1338
|
const obj = arg1;
|
|
1323
1339
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1324
1340
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -1326,53 +1342,12 @@ function __wbg_get_imports() {
|
|
|
1326
1342
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1327
1343
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1328
1344
|
};
|
|
1329
|
-
imports.wbg.
|
|
1330
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1331
|
-
};
|
|
1332
|
-
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
1333
|
-
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
1345
|
+
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
|
1334
1346
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
1335
1347
|
return ret;
|
|
1336
1348
|
};
|
|
1337
|
-
imports.wbg.
|
|
1338
|
-
|
|
1339
|
-
const ret = (BigInt.asUintN(64, arg0) | (arg1 << BigInt(64)));
|
|
1340
|
-
return ret;
|
|
1341
|
-
};
|
|
1342
|
-
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
1343
|
-
// Cast intrinsic for `U64 -> Externref`.
|
|
1344
|
-
const ret = BigInt.asUintN(64, arg0);
|
|
1345
|
-
return ret;
|
|
1346
|
-
};
|
|
1347
|
-
imports.wbg.__wbindgen_cast_9ae0607507abb057 = function(arg0) {
|
|
1348
|
-
// Cast intrinsic for `I64 -> Externref`.
|
|
1349
|
-
const ret = arg0;
|
|
1350
|
-
return ret;
|
|
1351
|
-
};
|
|
1352
|
-
imports.wbg.__wbindgen_cast_cb9088102bce6b30 = function(arg0, arg1) {
|
|
1353
|
-
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
1354
|
-
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
1355
|
-
return ret;
|
|
1356
|
-
};
|
|
1357
|
-
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
1358
|
-
// Cast intrinsic for `F64 -> Externref`.
|
|
1359
|
-
const ret = arg0;
|
|
1360
|
-
return ret;
|
|
1361
|
-
};
|
|
1362
|
-
imports.wbg.__wbindgen_cast_f7331b0818e1ba43 = function(arg0, arg1) {
|
|
1363
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 4201, function: Function { arguments: [Externref], shim_idx: 4202, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1364
|
-
const ret = makeMutClosure(arg0, arg1, 4201, __wbg_adapter_10);
|
|
1365
|
-
return ret;
|
|
1366
|
-
};
|
|
1367
|
-
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
1368
|
-
const table = wasm.__wbindgen_export_4;
|
|
1369
|
-
const offset = table.grow(4);
|
|
1370
|
-
table.set(0, undefined);
|
|
1371
|
-
table.set(offset + 0, undefined);
|
|
1372
|
-
table.set(offset + 1, null);
|
|
1373
|
-
table.set(offset + 2, true);
|
|
1374
|
-
table.set(offset + 3, false);
|
|
1375
|
-
;
|
|
1349
|
+
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
1350
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1376
1351
|
};
|
|
1377
1352
|
|
|
1378
1353
|
return imports;
|