@bitwarden/sdk-internal 0.2.0-main.372 → 0.2.0-main.374
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/VERSION +1 -1
- package/bitwarden_wasm_internal.d.ts +24 -0
- package/bitwarden_wasm_internal_bg.js +503 -431
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +14 -12
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +24 -0
- package/node/bitwarden_wasm_internal.js +622 -533
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +13 -11
- package/package.json +1 -1
|
@@ -3,16 +3,6 @@ export function __wbg_set_wasm(val) {
|
|
|
3
3
|
wasm = val;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
const heap = new Array(128).fill(undefined);
|
|
7
|
-
|
|
8
|
-
heap.push(undefined, null, true, false);
|
|
9
|
-
|
|
10
|
-
function getObject(idx) {
|
|
11
|
-
return heap[idx];
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
let WASM_VECTOR_LEN = 0;
|
|
15
|
-
|
|
16
6
|
let cachedUint8ArrayMemory0 = null;
|
|
17
7
|
|
|
18
8
|
function getUint8ArrayMemory0() {
|
|
@@ -22,24 +12,60 @@ function getUint8ArrayMemory0() {
|
|
|
22
12
|
return cachedUint8ArrayMemory0;
|
|
23
13
|
}
|
|
24
14
|
|
|
25
|
-
|
|
26
|
-
typeof TextEncoder === "undefined" ? (0, module.require)("util").TextEncoder : TextEncoder;
|
|
15
|
+
let cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true });
|
|
27
16
|
|
|
28
|
-
|
|
17
|
+
cachedTextDecoder.decode();
|
|
29
18
|
|
|
30
|
-
const
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
19
|
+
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
20
|
+
let numBytesDecoded = 0;
|
|
21
|
+
function decodeText(ptr, len) {
|
|
22
|
+
numBytesDecoded += len;
|
|
23
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
24
|
+
cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true });
|
|
25
|
+
cachedTextDecoder.decode();
|
|
26
|
+
numBytesDecoded = len;
|
|
27
|
+
}
|
|
28
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function getStringFromWasm0(ptr, len) {
|
|
32
|
+
ptr = ptr >>> 0;
|
|
33
|
+
return decodeText(ptr, len);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let heap = new Array(128).fill(undefined);
|
|
37
|
+
|
|
38
|
+
heap.push(undefined, null, true, false);
|
|
39
|
+
|
|
40
|
+
let heap_next = heap.length;
|
|
41
|
+
|
|
42
|
+
function addHeapObject(obj) {
|
|
43
|
+
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
44
|
+
const idx = heap_next;
|
|
45
|
+
heap_next = heap[idx];
|
|
46
|
+
|
|
47
|
+
heap[idx] = obj;
|
|
48
|
+
return idx;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function getObject(idx) {
|
|
52
|
+
return heap[idx];
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
let WASM_VECTOR_LEN = 0;
|
|
56
|
+
|
|
57
|
+
const cachedTextEncoder = new TextEncoder();
|
|
58
|
+
|
|
59
|
+
if (!("encodeInto" in cachedTextEncoder)) {
|
|
60
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
61
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
62
|
+
view.set(buf);
|
|
63
|
+
return {
|
|
64
|
+
read: arg.length,
|
|
65
|
+
written: buf.length,
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
}
|
|
43
69
|
|
|
44
70
|
function passStringToWasm0(arg, malloc, realloc) {
|
|
45
71
|
if (realloc === undefined) {
|
|
@@ -71,7 +97,7 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|
|
71
97
|
}
|
|
72
98
|
ptr = realloc(ptr, len, (len = offset + arg.length * 3), 1) >>> 0;
|
|
73
99
|
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
74
|
-
const ret =
|
|
100
|
+
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
75
101
|
|
|
76
102
|
offset += ret.written;
|
|
77
103
|
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
@@ -95,90 +121,10 @@ function getDataViewMemory0() {
|
|
|
95
121
|
return cachedDataViewMemory0;
|
|
96
122
|
}
|
|
97
123
|
|
|
98
|
-
let heap_next = heap.length;
|
|
99
|
-
|
|
100
|
-
function addHeapObject(obj) {
|
|
101
|
-
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
102
|
-
const idx = heap_next;
|
|
103
|
-
heap_next = heap[idx];
|
|
104
|
-
|
|
105
|
-
heap[idx] = obj;
|
|
106
|
-
return idx;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
function handleError(f, args) {
|
|
110
|
-
try {
|
|
111
|
-
return f.apply(this, args);
|
|
112
|
-
} catch (e) {
|
|
113
|
-
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
const lTextDecoder =
|
|
118
|
-
typeof TextDecoder === "undefined" ? (0, module.require)("util").TextDecoder : TextDecoder;
|
|
119
|
-
|
|
120
|
-
let cachedTextDecoder = new lTextDecoder("utf-8", { ignoreBOM: true, fatal: true });
|
|
121
|
-
|
|
122
|
-
cachedTextDecoder.decode();
|
|
123
|
-
|
|
124
|
-
function getStringFromWasm0(ptr, len) {
|
|
125
|
-
ptr = ptr >>> 0;
|
|
126
|
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
127
|
-
}
|
|
128
|
-
|
|
129
124
|
function isLikeNone(x) {
|
|
130
125
|
return x === undefined || x === null;
|
|
131
126
|
}
|
|
132
127
|
|
|
133
|
-
function dropObject(idx) {
|
|
134
|
-
if (idx < 132) return;
|
|
135
|
-
heap[idx] = heap_next;
|
|
136
|
-
heap_next = idx;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
function takeObject(idx) {
|
|
140
|
-
const ret = getObject(idx);
|
|
141
|
-
dropObject(idx);
|
|
142
|
-
return ret;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
function getArrayU8FromWasm0(ptr, len) {
|
|
146
|
-
ptr = ptr >>> 0;
|
|
147
|
-
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
const CLOSURE_DTORS =
|
|
151
|
-
typeof FinalizationRegistry === "undefined"
|
|
152
|
-
? { register: () => {}, unregister: () => {} }
|
|
153
|
-
: new FinalizationRegistry((state) => {
|
|
154
|
-
wasm.__wbindgen_export_4.get(state.dtor)(state.a, state.b);
|
|
155
|
-
});
|
|
156
|
-
|
|
157
|
-
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
158
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
159
|
-
const real = (...args) => {
|
|
160
|
-
// First up with a closure we increment the internal reference
|
|
161
|
-
// count. This ensures that the Rust closure environment won't
|
|
162
|
-
// be deallocated while we're invoking it.
|
|
163
|
-
state.cnt++;
|
|
164
|
-
const a = state.a;
|
|
165
|
-
state.a = 0;
|
|
166
|
-
try {
|
|
167
|
-
return f(a, state.b, ...args);
|
|
168
|
-
} finally {
|
|
169
|
-
if (--state.cnt === 0) {
|
|
170
|
-
wasm.__wbindgen_export_4.get(state.dtor)(a, state.b);
|
|
171
|
-
CLOSURE_DTORS.unregister(state);
|
|
172
|
-
} else {
|
|
173
|
-
state.a = a;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
};
|
|
177
|
-
real.original = state;
|
|
178
|
-
CLOSURE_DTORS.register(real, state, state);
|
|
179
|
-
return real;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
128
|
function debugString(val) {
|
|
183
129
|
// primitive types
|
|
184
130
|
const type = typeof val;
|
|
@@ -243,6 +189,73 @@ function debugString(val) {
|
|
|
243
189
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
244
190
|
return className;
|
|
245
191
|
}
|
|
192
|
+
|
|
193
|
+
function handleError(f, args) {
|
|
194
|
+
try {
|
|
195
|
+
return f.apply(this, args);
|
|
196
|
+
} catch (e) {
|
|
197
|
+
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
function dropObject(idx) {
|
|
202
|
+
if (idx < 132) return;
|
|
203
|
+
heap[idx] = heap_next;
|
|
204
|
+
heap_next = idx;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
function takeObject(idx) {
|
|
208
|
+
const ret = getObject(idx);
|
|
209
|
+
dropObject(idx);
|
|
210
|
+
return ret;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
214
|
+
ptr = ptr >>> 0;
|
|
215
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
const CLOSURE_DTORS =
|
|
219
|
+
typeof FinalizationRegistry === "undefined"
|
|
220
|
+
? { register: () => {}, unregister: () => {} }
|
|
221
|
+
: new FinalizationRegistry((state) => state.dtor(state.a, state.b));
|
|
222
|
+
|
|
223
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
224
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
225
|
+
const real = (...args) => {
|
|
226
|
+
// First up with a closure we increment the internal reference
|
|
227
|
+
// count. This ensures that the Rust closure environment won't
|
|
228
|
+
// be deallocated while we're invoking it.
|
|
229
|
+
state.cnt++;
|
|
230
|
+
const a = state.a;
|
|
231
|
+
state.a = 0;
|
|
232
|
+
try {
|
|
233
|
+
return f(a, state.b, ...args);
|
|
234
|
+
} finally {
|
|
235
|
+
state.a = a;
|
|
236
|
+
real._wbg_cb_unref();
|
|
237
|
+
}
|
|
238
|
+
};
|
|
239
|
+
real._wbg_cb_unref = () => {
|
|
240
|
+
if (--state.cnt === 0) {
|
|
241
|
+
state.dtor(state.a, state.b);
|
|
242
|
+
state.a = 0;
|
|
243
|
+
CLOSURE_DTORS.unregister(state);
|
|
244
|
+
}
|
|
245
|
+
};
|
|
246
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
247
|
+
return real;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
function getArrayJsValueFromWasm0(ptr, len) {
|
|
251
|
+
ptr = ptr >>> 0;
|
|
252
|
+
const mem = getDataViewMemory0();
|
|
253
|
+
const result = [];
|
|
254
|
+
for (let i = ptr; i < ptr + 4 * len; i += 4) {
|
|
255
|
+
result.push(takeObject(mem.getUint32(i, true)));
|
|
256
|
+
}
|
|
257
|
+
return result;
|
|
258
|
+
}
|
|
246
259
|
/**
|
|
247
260
|
* @param {LogLevel} level
|
|
248
261
|
*/
|
|
@@ -464,16 +477,6 @@ function passArrayJsValueToWasm0(array, malloc) {
|
|
|
464
477
|
WASM_VECTOR_LEN = array.length;
|
|
465
478
|
return ptr;
|
|
466
479
|
}
|
|
467
|
-
|
|
468
|
-
function getArrayJsValueFromWasm0(ptr, len) {
|
|
469
|
-
ptr = ptr >>> 0;
|
|
470
|
-
const mem = getDataViewMemory0();
|
|
471
|
-
const result = [];
|
|
472
|
-
for (let i = ptr; i < ptr + 4 * len; i += 4) {
|
|
473
|
-
result.push(takeObject(mem.getUint32(i, true)));
|
|
474
|
-
}
|
|
475
|
-
return result;
|
|
476
|
-
}
|
|
477
480
|
/**
|
|
478
481
|
* @param {any} error
|
|
479
482
|
* @returns {boolean}
|
|
@@ -872,18 +875,22 @@ export function isEncryptFileError(error) {
|
|
|
872
875
|
}
|
|
873
876
|
}
|
|
874
877
|
|
|
875
|
-
function
|
|
876
|
-
wasm.
|
|
878
|
+
function wasm_bindgen__convert__closures_____invoke__h142f80da75ccedf5(arg0, arg1, arg2) {
|
|
879
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h142f80da75ccedf5(
|
|
877
880
|
arg0,
|
|
878
881
|
arg1,
|
|
879
882
|
addHeapObject(arg2),
|
|
880
883
|
);
|
|
881
884
|
}
|
|
882
885
|
|
|
883
|
-
function
|
|
886
|
+
function wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01(arg0, arg1) {
|
|
887
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01(arg0, arg1);
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
function wasm_bindgen__convert__closures_____invoke__he84e41ce162f03b8(arg0, arg1, arg2) {
|
|
884
891
|
try {
|
|
885
892
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
886
|
-
wasm.
|
|
893
|
+
wasm.wasm_bindgen__convert__closures_____invoke__he84e41ce162f03b8(
|
|
887
894
|
retptr,
|
|
888
895
|
arg0,
|
|
889
896
|
arg1,
|
|
@@ -899,15 +906,8 @@ function __wbg_adapter_57(arg0, arg1, arg2) {
|
|
|
899
906
|
}
|
|
900
907
|
}
|
|
901
908
|
|
|
902
|
-
function
|
|
903
|
-
wasm.
|
|
904
|
-
arg0,
|
|
905
|
-
arg1,
|
|
906
|
-
);
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
function __wbg_adapter_355(arg0, arg1, arg2, arg3) {
|
|
910
|
-
wasm.wasm_bindgen__convert__closures__invoke2_mut__h849ee2a9e4ae2f91(
|
|
909
|
+
function wasm_bindgen__convert__closures_____invoke__h4096c3b930b983e7(arg0, arg1, arg2, arg3) {
|
|
910
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h4096c3b930b983e7(
|
|
911
911
|
arg0,
|
|
912
912
|
arg1,
|
|
913
913
|
addHeapObject(arg2),
|
|
@@ -1137,6 +1137,7 @@ export class AttachmentsClient {
|
|
|
1137
1137
|
}
|
|
1138
1138
|
}
|
|
1139
1139
|
}
|
|
1140
|
+
if (Symbol.dispose) AttachmentsClient.prototype[Symbol.dispose] = AttachmentsClient.prototype.free;
|
|
1140
1141
|
|
|
1141
1142
|
const AuthClientFinalization =
|
|
1142
1143
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1182,6 +1183,7 @@ export class AuthClient {
|
|
|
1182
1183
|
return SendAccessClient.__wrap(ret);
|
|
1183
1184
|
}
|
|
1184
1185
|
}
|
|
1186
|
+
if (Symbol.dispose) AuthClient.prototype[Symbol.dispose] = AuthClient.prototype.free;
|
|
1185
1187
|
|
|
1186
1188
|
const BitwardenClientFinalization =
|
|
1187
1189
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1338,6 +1340,7 @@ export class BitwardenClient {
|
|
|
1338
1340
|
return ExporterClient.__wrap(ret);
|
|
1339
1341
|
}
|
|
1340
1342
|
}
|
|
1343
|
+
if (Symbol.dispose) BitwardenClient.prototype[Symbol.dispose] = BitwardenClient.prototype.free;
|
|
1341
1344
|
|
|
1342
1345
|
const CipherRiskClientFinalization =
|
|
1343
1346
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1420,6 +1423,7 @@ export class CipherRiskClient {
|
|
|
1420
1423
|
return takeObject(ret);
|
|
1421
1424
|
}
|
|
1422
1425
|
}
|
|
1426
|
+
if (Symbol.dispose) CipherRiskClient.prototype[Symbol.dispose] = CipherRiskClient.prototype.free;
|
|
1423
1427
|
|
|
1424
1428
|
const CiphersClientFinalization =
|
|
1425
1429
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1735,6 +1739,7 @@ export class CiphersClient {
|
|
|
1735
1739
|
}
|
|
1736
1740
|
}
|
|
1737
1741
|
}
|
|
1742
|
+
if (Symbol.dispose) CiphersClient.prototype[Symbol.dispose] = CiphersClient.prototype.free;
|
|
1738
1743
|
|
|
1739
1744
|
const CollectionViewNodeItemFinalization =
|
|
1740
1745
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1799,6 +1804,8 @@ export class CollectionViewNodeItem {
|
|
|
1799
1804
|
return takeObject(ret);
|
|
1800
1805
|
}
|
|
1801
1806
|
}
|
|
1807
|
+
if (Symbol.dispose)
|
|
1808
|
+
CollectionViewNodeItem.prototype[Symbol.dispose] = CollectionViewNodeItem.prototype.free;
|
|
1802
1809
|
|
|
1803
1810
|
const CollectionViewTreeFinalization =
|
|
1804
1811
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1869,6 +1876,8 @@ export class CollectionViewTree {
|
|
|
1869
1876
|
}
|
|
1870
1877
|
}
|
|
1871
1878
|
}
|
|
1879
|
+
if (Symbol.dispose)
|
|
1880
|
+
CollectionViewTree.prototype[Symbol.dispose] = CollectionViewTree.prototype.free;
|
|
1872
1881
|
|
|
1873
1882
|
const CollectionsClientFinalization =
|
|
1874
1883
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -1952,6 +1961,7 @@ export class CollectionsClient {
|
|
|
1952
1961
|
return CollectionViewTree.__wrap(ret);
|
|
1953
1962
|
}
|
|
1954
1963
|
}
|
|
1964
|
+
if (Symbol.dispose) CollectionsClient.prototype[Symbol.dispose] = CollectionsClient.prototype.free;
|
|
1955
1965
|
|
|
1956
1966
|
const CryptoClientFinalization =
|
|
1957
1967
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2195,6 +2205,7 @@ export class CryptoClient {
|
|
|
2195
2205
|
}
|
|
2196
2206
|
}
|
|
2197
2207
|
}
|
|
2208
|
+
if (Symbol.dispose) CryptoClient.prototype[Symbol.dispose] = CryptoClient.prototype.free;
|
|
2198
2209
|
|
|
2199
2210
|
const ExporterClientFinalization =
|
|
2200
2211
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2376,6 +2387,7 @@ export class ExporterClient {
|
|
|
2376
2387
|
}
|
|
2377
2388
|
}
|
|
2378
2389
|
}
|
|
2390
|
+
if (Symbol.dispose) ExporterClient.prototype[Symbol.dispose] = ExporterClient.prototype.free;
|
|
2379
2391
|
|
|
2380
2392
|
const FoldersClientFinalization =
|
|
2381
2393
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2510,6 +2522,7 @@ export class FoldersClient {
|
|
|
2510
2522
|
return takeObject(ret);
|
|
2511
2523
|
}
|
|
2512
2524
|
}
|
|
2525
|
+
if (Symbol.dispose) FoldersClient.prototype[Symbol.dispose] = FoldersClient.prototype.free;
|
|
2513
2526
|
|
|
2514
2527
|
const GeneratorClientFinalization =
|
|
2515
2528
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2641,6 +2654,7 @@ export class GeneratorClient {
|
|
|
2641
2654
|
}
|
|
2642
2655
|
}
|
|
2643
2656
|
}
|
|
2657
|
+
if (Symbol.dispose) GeneratorClient.prototype[Symbol.dispose] = GeneratorClient.prototype.free;
|
|
2644
2658
|
|
|
2645
2659
|
const IdentityClientFinalization =
|
|
2646
2660
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2670,6 +2684,7 @@ export class IdentityClient {
|
|
|
2670
2684
|
wasm.__wbg_identityclient_free(ptr, 0);
|
|
2671
2685
|
}
|
|
2672
2686
|
}
|
|
2687
|
+
if (Symbol.dispose) IdentityClient.prototype[Symbol.dispose] = IdentityClient.prototype.free;
|
|
2673
2688
|
|
|
2674
2689
|
const IncomingMessageFinalization =
|
|
2675
2690
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2809,6 +2824,7 @@ export class IncomingMessage {
|
|
|
2809
2824
|
return takeObject(ret);
|
|
2810
2825
|
}
|
|
2811
2826
|
}
|
|
2827
|
+
if (Symbol.dispose) IncomingMessage.prototype[Symbol.dispose] = IncomingMessage.prototype.free;
|
|
2812
2828
|
|
|
2813
2829
|
const IpcClientFinalization =
|
|
2814
2830
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2872,6 +2888,7 @@ export class IpcClient {
|
|
|
2872
2888
|
return takeObject(ret);
|
|
2873
2889
|
}
|
|
2874
2890
|
}
|
|
2891
|
+
if (Symbol.dispose) IpcClient.prototype[Symbol.dispose] = IpcClient.prototype.free;
|
|
2875
2892
|
|
|
2876
2893
|
const IpcClientSubscriptionFinalization =
|
|
2877
2894
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2913,6 +2930,8 @@ export class IpcClientSubscription {
|
|
|
2913
2930
|
return takeObject(ret);
|
|
2914
2931
|
}
|
|
2915
2932
|
}
|
|
2933
|
+
if (Symbol.dispose)
|
|
2934
|
+
IpcClientSubscription.prototype[Symbol.dispose] = IpcClientSubscription.prototype.free;
|
|
2916
2935
|
|
|
2917
2936
|
const IpcCommunicationBackendFinalization =
|
|
2918
2937
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -2963,6 +2982,8 @@ export class IpcCommunicationBackend {
|
|
|
2963
2982
|
}
|
|
2964
2983
|
}
|
|
2965
2984
|
}
|
|
2985
|
+
if (Symbol.dispose)
|
|
2986
|
+
IpcCommunicationBackend.prototype[Symbol.dispose] = IpcCommunicationBackend.prototype.free;
|
|
2966
2987
|
|
|
2967
2988
|
const OutgoingMessageFinalization =
|
|
2968
2989
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -3105,6 +3126,7 @@ export class OutgoingMessage {
|
|
|
3105
3126
|
}
|
|
3106
3127
|
}
|
|
3107
3128
|
}
|
|
3129
|
+
if (Symbol.dispose) OutgoingMessage.prototype[Symbol.dispose] = OutgoingMessage.prototype.free;
|
|
3108
3130
|
|
|
3109
3131
|
const PlatformClientFinalization =
|
|
3110
3132
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -3156,6 +3178,7 @@ export class PlatformClient {
|
|
|
3156
3178
|
}
|
|
3157
3179
|
}
|
|
3158
3180
|
}
|
|
3181
|
+
if (Symbol.dispose) PlatformClient.prototype[Symbol.dispose] = PlatformClient.prototype.free;
|
|
3159
3182
|
|
|
3160
3183
|
const PureCryptoFinalization =
|
|
3161
3184
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -3971,6 +3994,7 @@ export class PureCrypto {
|
|
|
3971
3994
|
}
|
|
3972
3995
|
}
|
|
3973
3996
|
}
|
|
3997
|
+
if (Symbol.dispose) PureCrypto.prototype[Symbol.dispose] = PureCrypto.prototype.free;
|
|
3974
3998
|
|
|
3975
3999
|
const SendAccessClientFinalization =
|
|
3976
4000
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -4012,6 +4036,7 @@ export class SendAccessClient {
|
|
|
4012
4036
|
return takeObject(ret);
|
|
4013
4037
|
}
|
|
4014
4038
|
}
|
|
4039
|
+
if (Symbol.dispose) SendAccessClient.prototype[Symbol.dispose] = SendAccessClient.prototype.free;
|
|
4015
4040
|
|
|
4016
4041
|
const StateClientFinalization =
|
|
4017
4042
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -4069,6 +4094,7 @@ export class StateClient {
|
|
|
4069
4094
|
return takeObject(ret);
|
|
4070
4095
|
}
|
|
4071
4096
|
}
|
|
4097
|
+
if (Symbol.dispose) StateClient.prototype[Symbol.dispose] = StateClient.prototype.free;
|
|
4072
4098
|
|
|
4073
4099
|
const TotpClientFinalization =
|
|
4074
4100
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -4133,6 +4159,7 @@ export class TotpClient {
|
|
|
4133
4159
|
}
|
|
4134
4160
|
}
|
|
4135
4161
|
}
|
|
4162
|
+
if (Symbol.dispose) TotpClient.prototype[Symbol.dispose] = TotpClient.prototype.free;
|
|
4136
4163
|
|
|
4137
4164
|
const VaultClientFinalization =
|
|
4138
4165
|
typeof FinalizationRegistry === "undefined"
|
|
@@ -4208,6 +4235,17 @@ export class VaultClient {
|
|
|
4208
4235
|
return CipherRiskClient.__wrap(ret);
|
|
4209
4236
|
}
|
|
4210
4237
|
}
|
|
4238
|
+
if (Symbol.dispose) VaultClient.prototype[Symbol.dispose] = VaultClient.prototype.free;
|
|
4239
|
+
|
|
4240
|
+
export function __wbg_Error_e83987f665cf5504(arg0, arg1) {
|
|
4241
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
4242
|
+
return addHeapObject(ret);
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
export function __wbg_Number_bb48ca12f395cd08(arg0) {
|
|
4246
|
+
const ret = Number(getObject(arg0));
|
|
4247
|
+
return ret;
|
|
4248
|
+
}
|
|
4211
4249
|
|
|
4212
4250
|
export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
|
|
4213
4251
|
const ret = String(getObject(arg1));
|
|
@@ -4217,37 +4255,119 @@ export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
|
|
|
4217
4255
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
4218
4256
|
}
|
|
4219
4257
|
|
|
4220
|
-
export function
|
|
4221
|
-
getObject(
|
|
4258
|
+
export function __wbg___wbindgen_bigint_get_as_i64_f3ebc5a755000afd(arg0, arg1) {
|
|
4259
|
+
const v = getObject(arg1);
|
|
4260
|
+
const ret = typeof v === "bigint" ? v : undefined;
|
|
4261
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
4262
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
4222
4263
|
}
|
|
4223
4264
|
|
|
4224
|
-
export function
|
|
4225
|
-
getObject(arg0)
|
|
4265
|
+
export function __wbg___wbindgen_boolean_get_6d5a1ee65bab5f68(arg0) {
|
|
4266
|
+
const v = getObject(arg0);
|
|
4267
|
+
const ret = typeof v === "boolean" ? v : undefined;
|
|
4268
|
+
return isLikeNone(ret) ? 0xffffff : ret ? 1 : 0;
|
|
4269
|
+
}
|
|
4270
|
+
|
|
4271
|
+
export function __wbg___wbindgen_debug_string_df47ffb5e35e6763(arg0, arg1) {
|
|
4272
|
+
const ret = debugString(getObject(arg1));
|
|
4273
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
4274
|
+
const len1 = WASM_VECTOR_LEN;
|
|
4275
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
4276
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
4277
|
+
}
|
|
4278
|
+
|
|
4279
|
+
export function __wbg___wbindgen_in_bb933bd9e1b3bc0f(arg0, arg1) {
|
|
4280
|
+
const ret = getObject(arg0) in getObject(arg1);
|
|
4281
|
+
return ret;
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
export function __wbg___wbindgen_is_bigint_cb320707dcd35f0b(arg0) {
|
|
4285
|
+
const ret = typeof getObject(arg0) === "bigint";
|
|
4286
|
+
return ret;
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4289
|
+
export function __wbg___wbindgen_is_function_ee8a6c5833c90377(arg0) {
|
|
4290
|
+
const ret = typeof getObject(arg0) === "function";
|
|
4291
|
+
return ret;
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
export function __wbg___wbindgen_is_object_c818261d21f283a4(arg0) {
|
|
4295
|
+
const val = getObject(arg0);
|
|
4296
|
+
const ret = typeof val === "object" && val !== null;
|
|
4297
|
+
return ret;
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
export function __wbg___wbindgen_is_string_fbb76cb2940daafd(arg0) {
|
|
4301
|
+
const ret = typeof getObject(arg0) === "string";
|
|
4302
|
+
return ret;
|
|
4303
|
+
}
|
|
4304
|
+
|
|
4305
|
+
export function __wbg___wbindgen_is_undefined_2d472862bd29a478(arg0) {
|
|
4306
|
+
const ret = getObject(arg0) === undefined;
|
|
4307
|
+
return ret;
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
export function __wbg___wbindgen_jsval_eq_6b13ab83478b1c50(arg0, arg1) {
|
|
4311
|
+
const ret = getObject(arg0) === getObject(arg1);
|
|
4312
|
+
return ret;
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
export function __wbg___wbindgen_jsval_loose_eq_b664b38a2f582147(arg0, arg1) {
|
|
4316
|
+
const ret = getObject(arg0) == getObject(arg1);
|
|
4317
|
+
return ret;
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
export function __wbg___wbindgen_number_get_a20bf9b85341449d(arg0, arg1) {
|
|
4321
|
+
const obj = getObject(arg1);
|
|
4322
|
+
const ret = typeof obj === "number" ? obj : undefined;
|
|
4323
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
4324
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
export function __wbg___wbindgen_string_get_e4f06c90489ad01b(arg0, arg1) {
|
|
4328
|
+
const obj = getObject(arg1);
|
|
4329
|
+
const ret = typeof obj === "string" ? obj : undefined;
|
|
4330
|
+
var ptr1 = isLikeNone(ret)
|
|
4331
|
+
? 0
|
|
4332
|
+
: passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
4333
|
+
var len1 = WASM_VECTOR_LEN;
|
|
4334
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
4335
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
export function __wbg___wbindgen_throw_b855445ff6a94295(arg0, arg1) {
|
|
4339
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
export function __wbg__wbg_cb_unref_2454a539ea5790d9(arg0) {
|
|
4343
|
+
getObject(arg0)._wbg_cb_unref();
|
|
4226
4344
|
}
|
|
4227
4345
|
|
|
4228
|
-
export function
|
|
4346
|
+
export function __wbg_abort_28ad55c5825b004d(arg0, arg1) {
|
|
4347
|
+
getObject(arg0).abort(getObject(arg1));
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
export function __wbg_abort_3b256cd5ad0ac232() {
|
|
4229
4351
|
return handleError(function (arg0) {
|
|
4230
4352
|
getObject(arg0).abort();
|
|
4231
4353
|
}, arguments);
|
|
4232
4354
|
}
|
|
4233
4355
|
|
|
4234
|
-
export function
|
|
4235
|
-
getObject(arg0).
|
|
4356
|
+
export function __wbg_abort_e7eb059f72f9ed0c(arg0) {
|
|
4357
|
+
getObject(arg0).abort();
|
|
4236
4358
|
}
|
|
4237
4359
|
|
|
4238
|
-
export function
|
|
4239
|
-
|
|
4240
|
-
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
4241
|
-
}, arguments);
|
|
4360
|
+
export function __wbg_addEventListener_dc3da056b615f634(arg0, arg1, arg2, arg3) {
|
|
4361
|
+
getObject(arg0).addEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
4242
4362
|
}
|
|
4243
4363
|
|
|
4244
|
-
export function
|
|
4364
|
+
export function __wbg_append_45ddba58b0706f62() {
|
|
4245
4365
|
return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
4246
4366
|
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
4247
4367
|
}, arguments);
|
|
4248
4368
|
}
|
|
4249
4369
|
|
|
4250
|
-
export function
|
|
4370
|
+
export function __wbg_append_892c5e2d5bdd60ac() {
|
|
4251
4371
|
return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
4252
4372
|
getObject(arg0).append(
|
|
4253
4373
|
getStringFromWasm0(arg1, arg2),
|
|
@@ -4257,39 +4377,40 @@ export function __wbg_append_b2d1fc16de2a0e81() {
|
|
|
4257
4377
|
}, arguments);
|
|
4258
4378
|
}
|
|
4259
4379
|
|
|
4260
|
-
export function
|
|
4380
|
+
export function __wbg_append_b577eb3a177bc0fa() {
|
|
4381
|
+
return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
4382
|
+
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
4383
|
+
}, arguments);
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4386
|
+
export function __wbg_append_cb0bba4cf263a60b() {
|
|
4261
4387
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
4262
4388
|
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
4263
4389
|
}, arguments);
|
|
4264
4390
|
}
|
|
4265
4391
|
|
|
4266
|
-
export function
|
|
4392
|
+
export function __wbg_arrayBuffer_b375eccb84b4ddf3() {
|
|
4267
4393
|
return handleError(function (arg0) {
|
|
4268
4394
|
const ret = getObject(arg0).arrayBuffer();
|
|
4269
4395
|
return addHeapObject(ret);
|
|
4270
4396
|
}, arguments);
|
|
4271
4397
|
}
|
|
4272
4398
|
|
|
4273
|
-
export function
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
}
|
|
4277
|
-
|
|
4278
|
-
export function __wbg_call_672a4d21634d4a24() {
|
|
4279
|
-
return handleError(function (arg0, arg1) {
|
|
4280
|
-
const ret = getObject(arg0).call(getObject(arg1));
|
|
4399
|
+
export function __wbg_call_525440f72fbfc0ea() {
|
|
4400
|
+
return handleError(function (arg0, arg1, arg2) {
|
|
4401
|
+
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
|
4281
4402
|
return addHeapObject(ret);
|
|
4282
4403
|
}, arguments);
|
|
4283
4404
|
}
|
|
4284
4405
|
|
|
4285
|
-
export function
|
|
4286
|
-
return handleError(function (arg0, arg1
|
|
4287
|
-
const ret = getObject(arg0).call(getObject(arg1)
|
|
4406
|
+
export function __wbg_call_e762c39fa8ea36bf() {
|
|
4407
|
+
return handleError(function (arg0, arg1) {
|
|
4408
|
+
const ret = getObject(arg0).call(getObject(arg1));
|
|
4288
4409
|
return addHeapObject(ret);
|
|
4289
4410
|
}, arguments);
|
|
4290
4411
|
}
|
|
4291
4412
|
|
|
4292
|
-
export function
|
|
4413
|
+
export function __wbg_cipher_90da44fade4d7231(arg0) {
|
|
4293
4414
|
const ret = getObject(arg0).cipher;
|
|
4294
4415
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4295
4416
|
}
|
|
@@ -4304,7 +4425,7 @@ export function __wbg_collectionviewnodeitem_new(arg0) {
|
|
|
4304
4425
|
return addHeapObject(ret);
|
|
4305
4426
|
}
|
|
4306
4427
|
|
|
4307
|
-
export function
|
|
4428
|
+
export function __wbg_createObjectStore_283a43a822bf49ca() {
|
|
4308
4429
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
4309
4430
|
const ret = getObject(arg0).createObjectStore(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
4310
4431
|
return addHeapObject(ret);
|
|
@@ -4316,26 +4437,33 @@ export function __wbg_crypto_574e78ad8b13b65f(arg0) {
|
|
|
4316
4437
|
return addHeapObject(ret);
|
|
4317
4438
|
}
|
|
4318
4439
|
|
|
4319
|
-
export function
|
|
4440
|
+
export function __wbg_debug_e55e1461940eb14d(arg0, arg1, arg2, arg3) {
|
|
4320
4441
|
console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
4321
4442
|
}
|
|
4322
4443
|
|
|
4323
|
-
export function
|
|
4444
|
+
export function __wbg_deleteObjectStore_444a266b213fafcf() {
|
|
4324
4445
|
return handleError(function (arg0, arg1, arg2) {
|
|
4325
4446
|
getObject(arg0).deleteObjectStore(getStringFromWasm0(arg1, arg2));
|
|
4326
4447
|
}, arguments);
|
|
4327
4448
|
}
|
|
4328
4449
|
|
|
4329
|
-
export function
|
|
4450
|
+
export function __wbg_done_2042aa2670fb1db1(arg0) {
|
|
4330
4451
|
const ret = getObject(arg0).done;
|
|
4331
4452
|
return ret;
|
|
4332
4453
|
}
|
|
4333
4454
|
|
|
4334
|
-
export function
|
|
4455
|
+
export function __wbg_entries_e171b586f8f6bdbf(arg0) {
|
|
4335
4456
|
const ret = Object.entries(getObject(arg0));
|
|
4336
4457
|
return addHeapObject(ret);
|
|
4337
4458
|
}
|
|
4338
4459
|
|
|
4460
|
+
export function __wbg_error_3e929987fcd3e155() {
|
|
4461
|
+
return handleError(function (arg0) {
|
|
4462
|
+
const ret = getObject(arg0).error;
|
|
4463
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4464
|
+
}, arguments);
|
|
4465
|
+
}
|
|
4466
|
+
|
|
4339
4467
|
export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
|
|
4340
4468
|
let deferred0_0;
|
|
4341
4469
|
let deferred0_1;
|
|
@@ -4348,33 +4476,26 @@ export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
|
|
|
4348
4476
|
}
|
|
4349
4477
|
}
|
|
4350
4478
|
|
|
4351
|
-
export function
|
|
4479
|
+
export function __wbg_error_d8b22cf4e59a6791(arg0, arg1, arg2, arg3) {
|
|
4352
4480
|
console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
4353
4481
|
}
|
|
4354
4482
|
|
|
4355
|
-
export function __wbg_error_ff4ddaabdfc5dbb3() {
|
|
4356
|
-
return handleError(function (arg0) {
|
|
4357
|
-
const ret = getObject(arg0).error;
|
|
4358
|
-
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4359
|
-
}, arguments);
|
|
4360
|
-
}
|
|
4361
|
-
|
|
4362
4483
|
export function __wbg_fetch_3afbdcc7ddbf16fe(arg0) {
|
|
4363
4484
|
const ret = fetch(getObject(arg0));
|
|
4364
4485
|
return addHeapObject(ret);
|
|
4365
4486
|
}
|
|
4366
4487
|
|
|
4367
|
-
export function
|
|
4488
|
+
export function __wbg_fetch_f8ba0e29a9d6de0d(arg0, arg1) {
|
|
4368
4489
|
const ret = getObject(arg0).fetch(getObject(arg1));
|
|
4369
4490
|
return addHeapObject(ret);
|
|
4370
4491
|
}
|
|
4371
4492
|
|
|
4372
|
-
export function
|
|
4493
|
+
export function __wbg_folder_1f9f19453de069bd(arg0) {
|
|
4373
4494
|
const ret = getObject(arg0).folder;
|
|
4374
4495
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4375
4496
|
}
|
|
4376
4497
|
|
|
4377
|
-
export function
|
|
4498
|
+
export function __wbg_getFullYear_8240d5a15191feae(arg0) {
|
|
4378
4499
|
const ret = getObject(arg0).getFullYear();
|
|
4379
4500
|
return ret;
|
|
4380
4501
|
}
|
|
@@ -4391,19 +4512,17 @@ export function __wbg_getRandomValues_b8f5dbd5f3995a9e() {
|
|
|
4391
4512
|
}, arguments);
|
|
4392
4513
|
}
|
|
4393
4514
|
|
|
4394
|
-
export function
|
|
4515
|
+
export function __wbg_getTime_14776bfb48a1bff9(arg0) {
|
|
4395
4516
|
const ret = getObject(arg0).getTime();
|
|
4396
4517
|
return ret;
|
|
4397
4518
|
}
|
|
4398
4519
|
|
|
4399
|
-
export function
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
return addHeapObject(ret);
|
|
4403
|
-
}, arguments);
|
|
4520
|
+
export function __wbg_get_7bed016f185add81(arg0, arg1) {
|
|
4521
|
+
const ret = getObject(arg0)[arg1 >>> 0];
|
|
4522
|
+
return addHeapObject(ret);
|
|
4404
4523
|
}
|
|
4405
4524
|
|
|
4406
|
-
export function
|
|
4525
|
+
export function __wbg_get_905bbb36d78e816c() {
|
|
4407
4526
|
return handleError(function (arg0, arg1, arg2) {
|
|
4408
4527
|
let deferred0_0;
|
|
4409
4528
|
let deferred0_1;
|
|
@@ -4418,7 +4537,12 @@ export function __wbg_get_77a3546428c7fc7d() {
|
|
|
4418
4537
|
}, arguments);
|
|
4419
4538
|
}
|
|
4420
4539
|
|
|
4421
|
-
export function
|
|
4540
|
+
export function __wbg_get_access_token_fb7908159e830dff(arg0) {
|
|
4541
|
+
const ret = getObject(arg0).get_access_token();
|
|
4542
|
+
return addHeapObject(ret);
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
export function __wbg_get_eb8ca7ea2e1397a3() {
|
|
4422
4546
|
return handleError(function (arg0, arg1, arg2) {
|
|
4423
4547
|
let deferred0_0;
|
|
4424
4548
|
let deferred0_1;
|
|
@@ -4433,29 +4557,26 @@ export function __wbg_get_94e67783f37c82cd() {
|
|
|
4433
4557
|
}, arguments);
|
|
4434
4558
|
}
|
|
4435
4559
|
|
|
4436
|
-
export function
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
export function __wbg_getaccesstoken_9240256d891025b6(arg0) {
|
|
4442
|
-
const ret = getObject(arg0).get_access_token();
|
|
4443
|
-
return addHeapObject(ret);
|
|
4560
|
+
export function __wbg_get_efcb449f58ec27c2() {
|
|
4561
|
+
return handleError(function (arg0, arg1) {
|
|
4562
|
+
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
4563
|
+
return addHeapObject(ret);
|
|
4564
|
+
}, arguments);
|
|
4444
4565
|
}
|
|
4445
4566
|
|
|
4446
|
-
export function
|
|
4567
|
+
export function __wbg_get_with_ref_key_1dc361bd10053bfe(arg0, arg1) {
|
|
4447
4568
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
4448
4569
|
return addHeapObject(ret);
|
|
4449
4570
|
}
|
|
4450
4571
|
|
|
4451
|
-
export function
|
|
4572
|
+
export function __wbg_has_787fafc980c3ccdb() {
|
|
4452
4573
|
return handleError(function (arg0, arg1) {
|
|
4453
4574
|
const ret = Reflect.has(getObject(arg0), getObject(arg1));
|
|
4454
4575
|
return ret;
|
|
4455
4576
|
}, arguments);
|
|
4456
4577
|
}
|
|
4457
4578
|
|
|
4458
|
-
export function
|
|
4579
|
+
export function __wbg_headers_b87d7eaba61c3278(arg0) {
|
|
4459
4580
|
const ret = getObject(arg0).headers;
|
|
4460
4581
|
return addHeapObject(ret);
|
|
4461
4582
|
}
|
|
@@ -4465,25 +4586,25 @@ export function __wbg_incomingmessage_new(arg0) {
|
|
|
4465
4586
|
return addHeapObject(ret);
|
|
4466
4587
|
}
|
|
4467
4588
|
|
|
4468
|
-
export function
|
|
4589
|
+
export function __wbg_indexedDB_62bfbbd55ec74b14() {
|
|
4469
4590
|
return handleError(function (arg0) {
|
|
4470
4591
|
const ret = getObject(arg0).indexedDB;
|
|
4471
4592
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4472
4593
|
}, arguments);
|
|
4473
4594
|
}
|
|
4474
4595
|
|
|
4475
|
-
export function
|
|
4596
|
+
export function __wbg_indexedDB_8b464318fe56681e() {
|
|
4476
4597
|
return handleError(function (arg0) {
|
|
4477
4598
|
const ret = getObject(arg0).indexedDB;
|
|
4478
4599
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4479
4600
|
}, arguments);
|
|
4480
4601
|
}
|
|
4481
4602
|
|
|
4482
|
-
export function
|
|
4603
|
+
export function __wbg_info_68cd5b51ef7e5137(arg0, arg1, arg2, arg3) {
|
|
4483
4604
|
console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
4484
4605
|
}
|
|
4485
4606
|
|
|
4486
|
-
export function
|
|
4607
|
+
export function __wbg_instanceof_ArrayBuffer_70beb1189ca63b38(arg0) {
|
|
4487
4608
|
let result;
|
|
4488
4609
|
try {
|
|
4489
4610
|
result = getObject(arg0) instanceof ArrayBuffer;
|
|
@@ -4494,7 +4615,7 @@ export function __wbg_instanceof_ArrayBuffer_e14585432e3737fc(arg0) {
|
|
|
4494
4615
|
return ret;
|
|
4495
4616
|
}
|
|
4496
4617
|
|
|
4497
|
-
export function
|
|
4618
|
+
export function __wbg_instanceof_DomException_83b15e7b042a0b1a(arg0) {
|
|
4498
4619
|
let result;
|
|
4499
4620
|
try {
|
|
4500
4621
|
result = getObject(arg0) instanceof DOMException;
|
|
@@ -4505,7 +4626,7 @@ export function __wbg_instanceof_DomException_ed1ccb7aaf39034c(arg0) {
|
|
|
4505
4626
|
return ret;
|
|
4506
4627
|
}
|
|
4507
4628
|
|
|
4508
|
-
export function
|
|
4629
|
+
export function __wbg_instanceof_IdbDatabase_fcf75ffeeec3ec8c(arg0) {
|
|
4509
4630
|
let result;
|
|
4510
4631
|
try {
|
|
4511
4632
|
result = getObject(arg0) instanceof IDBDatabase;
|
|
@@ -4516,7 +4637,7 @@ export function __wbg_instanceof_IdbDatabase_a3ef009ca00059f9(arg0) {
|
|
|
4516
4637
|
return ret;
|
|
4517
4638
|
}
|
|
4518
4639
|
|
|
4519
|
-
export function
|
|
4640
|
+
export function __wbg_instanceof_IdbOpenDbRequest_08e4929084e51476(arg0) {
|
|
4520
4641
|
let result;
|
|
4521
4642
|
try {
|
|
4522
4643
|
result = getObject(arg0) instanceof IDBOpenDBRequest;
|
|
@@ -4527,7 +4648,7 @@ export function __wbg_instanceof_IdbOpenDbRequest_a3416e156c9db893(arg0) {
|
|
|
4527
4648
|
return ret;
|
|
4528
4649
|
}
|
|
4529
4650
|
|
|
4530
|
-
export function
|
|
4651
|
+
export function __wbg_instanceof_IdbRequest_26754883a3cc8f81(arg0) {
|
|
4531
4652
|
let result;
|
|
4532
4653
|
try {
|
|
4533
4654
|
result = getObject(arg0) instanceof IDBRequest;
|
|
@@ -4538,7 +4659,7 @@ export function __wbg_instanceof_IdbRequest_4813c3f207666aa4(arg0) {
|
|
|
4538
4659
|
return ret;
|
|
4539
4660
|
}
|
|
4540
4661
|
|
|
4541
|
-
export function
|
|
4662
|
+
export function __wbg_instanceof_Map_8579b5e2ab5437c7(arg0) {
|
|
4542
4663
|
let result;
|
|
4543
4664
|
try {
|
|
4544
4665
|
result = getObject(arg0) instanceof Map;
|
|
@@ -4549,7 +4670,7 @@ export function __wbg_instanceof_Map_f3469ce2244d2430(arg0) {
|
|
|
4549
4670
|
return ret;
|
|
4550
4671
|
}
|
|
4551
4672
|
|
|
4552
|
-
export function
|
|
4673
|
+
export function __wbg_instanceof_Response_f4f3e87e07f3135c(arg0) {
|
|
4553
4674
|
let result;
|
|
4554
4675
|
try {
|
|
4555
4676
|
result = getObject(arg0) instanceof Response;
|
|
@@ -4560,7 +4681,7 @@ export function __wbg_instanceof_Response_f2cc20d9f7dfd644(arg0) {
|
|
|
4560
4681
|
return ret;
|
|
4561
4682
|
}
|
|
4562
4683
|
|
|
4563
|
-
export function
|
|
4684
|
+
export function __wbg_instanceof_Uint8Array_20c8e73002f7af98(arg0) {
|
|
4564
4685
|
let result;
|
|
4565
4686
|
try {
|
|
4566
4687
|
result = getObject(arg0) instanceof Uint8Array;
|
|
@@ -4571,7 +4692,7 @@ export function __wbg_instanceof_Uint8Array_17156bcf118086a9(arg0) {
|
|
|
4571
4692
|
return ret;
|
|
4572
4693
|
}
|
|
4573
4694
|
|
|
4574
|
-
export function
|
|
4695
|
+
export function __wbg_instanceof_Window_4846dbb3de56c84c(arg0) {
|
|
4575
4696
|
let result;
|
|
4576
4697
|
try {
|
|
4577
4698
|
result = getObject(arg0) instanceof Window;
|
|
@@ -4582,7 +4703,7 @@ export function __wbg_instanceof_Window_def73ea0955fc569(arg0) {
|
|
|
4582
4703
|
return ret;
|
|
4583
4704
|
}
|
|
4584
4705
|
|
|
4585
|
-
export function
|
|
4706
|
+
export function __wbg_instanceof_WorkerGlobalScope_e31f49b6d33fcadd(arg0) {
|
|
4586
4707
|
let result;
|
|
4587
4708
|
try {
|
|
4588
4709
|
result = getObject(arg0) instanceof WorkerGlobalScope;
|
|
@@ -4598,46 +4719,46 @@ export function __wbg_ipcclientsubscription_new(arg0) {
|
|
|
4598
4719
|
return addHeapObject(ret);
|
|
4599
4720
|
}
|
|
4600
4721
|
|
|
4601
|
-
export function
|
|
4722
|
+
export function __wbg_isArray_96e0af9891d0945d(arg0) {
|
|
4602
4723
|
const ret = Array.isArray(getObject(arg0));
|
|
4603
4724
|
return ret;
|
|
4604
4725
|
}
|
|
4605
4726
|
|
|
4606
|
-
export function
|
|
4727
|
+
export function __wbg_isSafeInteger_d216eda7911dde36(arg0) {
|
|
4607
4728
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
4608
4729
|
return ret;
|
|
4609
4730
|
}
|
|
4610
4731
|
|
|
4611
|
-
export function
|
|
4732
|
+
export function __wbg_iterator_e5822695327a3c39() {
|
|
4612
4733
|
const ret = Symbol.iterator;
|
|
4613
4734
|
return addHeapObject(ret);
|
|
4614
4735
|
}
|
|
4615
4736
|
|
|
4616
|
-
export function
|
|
4737
|
+
export function __wbg_length_69bca3cb64fc8748(arg0) {
|
|
4617
4738
|
const ret = getObject(arg0).length;
|
|
4618
4739
|
return ret;
|
|
4619
4740
|
}
|
|
4620
4741
|
|
|
4621
|
-
export function
|
|
4742
|
+
export function __wbg_length_cdd215e10d9dd507(arg0) {
|
|
4622
4743
|
const ret = getObject(arg0).length;
|
|
4623
4744
|
return ret;
|
|
4624
4745
|
}
|
|
4625
4746
|
|
|
4626
|
-
export function
|
|
4747
|
+
export function __wbg_list_3ff9e942e0036bfb() {
|
|
4627
4748
|
return handleError(function (arg0) {
|
|
4628
4749
|
const ret = getObject(arg0).list();
|
|
4629
4750
|
return addHeapObject(ret);
|
|
4630
4751
|
}, arguments);
|
|
4631
4752
|
}
|
|
4632
4753
|
|
|
4633
|
-
export function
|
|
4754
|
+
export function __wbg_list_bdb6eec69b7ea3d2() {
|
|
4634
4755
|
return handleError(function (arg0) {
|
|
4635
4756
|
const ret = getObject(arg0).list();
|
|
4636
4757
|
return addHeapObject(ret);
|
|
4637
4758
|
}, arguments);
|
|
4638
4759
|
}
|
|
4639
4760
|
|
|
4640
|
-
export function
|
|
4761
|
+
export function __wbg_log_45eb3a49e7cdcb64(arg0, arg1, arg2, arg3) {
|
|
4641
4762
|
console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
4642
4763
|
}
|
|
4643
4764
|
|
|
@@ -4646,7 +4767,7 @@ export function __wbg_msCrypto_a61aeb35a24c1329(arg0) {
|
|
|
4646
4767
|
return addHeapObject(ret);
|
|
4647
4768
|
}
|
|
4648
4769
|
|
|
4649
|
-
export function
|
|
4770
|
+
export function __wbg_name_3a33ad25b892b2dd(arg0, arg1) {
|
|
4650
4771
|
const ret = getObject(arg1).name;
|
|
4651
4772
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
4652
4773
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -4654,26 +4775,36 @@ export function __wbg_name_f2d27098bfd843e7(arg0, arg1) {
|
|
|
4654
4775
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
4655
4776
|
}
|
|
4656
4777
|
|
|
4657
|
-
export function
|
|
4778
|
+
export function __wbg_new_0_f9740686d739025c() {
|
|
4658
4779
|
const ret = new Date();
|
|
4659
4780
|
return addHeapObject(ret);
|
|
4660
4781
|
}
|
|
4661
4782
|
|
|
4662
|
-
export function
|
|
4783
|
+
export function __wbg_new_1acc0b6eea89d040() {
|
|
4784
|
+
const ret = new Object();
|
|
4785
|
+
return addHeapObject(ret);
|
|
4786
|
+
}
|
|
4787
|
+
|
|
4788
|
+
export function __wbg_new_2531773dac38ebb3() {
|
|
4663
4789
|
return handleError(function () {
|
|
4664
|
-
const ret = new
|
|
4790
|
+
const ret = new AbortController();
|
|
4665
4791
|
return addHeapObject(ret);
|
|
4666
4792
|
}, arguments);
|
|
4667
4793
|
}
|
|
4668
4794
|
|
|
4669
|
-
export function
|
|
4795
|
+
export function __wbg_new_3c3d849046688a66(arg0, arg1) {
|
|
4670
4796
|
try {
|
|
4671
4797
|
var state0 = { a: arg0, b: arg1 };
|
|
4672
4798
|
var cb0 = (arg0, arg1) => {
|
|
4673
4799
|
const a = state0.a;
|
|
4674
4800
|
state0.a = 0;
|
|
4675
4801
|
try {
|
|
4676
|
-
return
|
|
4802
|
+
return wasm_bindgen__convert__closures_____invoke__h4096c3b930b983e7(
|
|
4803
|
+
a,
|
|
4804
|
+
state0.b,
|
|
4805
|
+
arg0,
|
|
4806
|
+
arg1,
|
|
4807
|
+
);
|
|
4677
4808
|
} finally {
|
|
4678
4809
|
state0.a = a;
|
|
4679
4810
|
}
|
|
@@ -4685,19 +4816,21 @@ export function __wbg_new_23a2665fac83c611(arg0, arg1) {
|
|
|
4685
4816
|
}
|
|
4686
4817
|
}
|
|
4687
4818
|
|
|
4688
|
-
export function
|
|
4689
|
-
const ret = new
|
|
4819
|
+
export function __wbg_new_5a79be3ab53b8aa5(arg0) {
|
|
4820
|
+
const ret = new Uint8Array(getObject(arg0));
|
|
4690
4821
|
return addHeapObject(ret);
|
|
4691
4822
|
}
|
|
4692
4823
|
|
|
4693
|
-
export function
|
|
4824
|
+
export function __wbg_new_68651c719dcda04e() {
|
|
4694
4825
|
const ret = new Map();
|
|
4695
4826
|
return addHeapObject(ret);
|
|
4696
4827
|
}
|
|
4697
4828
|
|
|
4698
|
-
export function
|
|
4699
|
-
|
|
4700
|
-
|
|
4829
|
+
export function __wbg_new_6f694bb0585846e0() {
|
|
4830
|
+
return handleError(function () {
|
|
4831
|
+
const ret = new FormData();
|
|
4832
|
+
return addHeapObject(ret);
|
|
4833
|
+
}, arguments);
|
|
4701
4834
|
}
|
|
4702
4835
|
|
|
4703
4836
|
export function __wbg_new_8a6f238a6ece86ea() {
|
|
@@ -4705,28 +4838,21 @@ export function __wbg_new_8a6f238a6ece86ea() {
|
|
|
4705
4838
|
return addHeapObject(ret);
|
|
4706
4839
|
}
|
|
4707
4840
|
|
|
4708
|
-
export function
|
|
4841
|
+
export function __wbg_new_9edf9838a2def39c() {
|
|
4709
4842
|
return handleError(function () {
|
|
4710
|
-
const ret = new
|
|
4843
|
+
const ret = new Headers();
|
|
4711
4844
|
return addHeapObject(ret);
|
|
4712
4845
|
}, arguments);
|
|
4713
4846
|
}
|
|
4714
4847
|
|
|
4715
|
-
export function
|
|
4716
|
-
const ret = new Uint8Array(getObject(arg0));
|
|
4717
|
-
return addHeapObject(ret);
|
|
4718
|
-
}
|
|
4719
|
-
|
|
4720
|
-
export function __wbg_new_c68d7209be747379(arg0, arg1) {
|
|
4848
|
+
export function __wbg_new_a7442b4b19c1a356(arg0, arg1) {
|
|
4721
4849
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
4722
4850
|
return addHeapObject(ret);
|
|
4723
4851
|
}
|
|
4724
4852
|
|
|
4725
|
-
export function
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
return addHeapObject(ret);
|
|
4729
|
-
}, arguments);
|
|
4853
|
+
export function __wbg_new_e17d9f43105b08be() {
|
|
4854
|
+
const ret = new Array();
|
|
4855
|
+
return addHeapObject(ret);
|
|
4730
4856
|
}
|
|
4731
4857
|
|
|
4732
4858
|
export function __wbg_new_f24b6d53abe5bc82(arg0, arg1) {
|
|
@@ -4742,72 +4868,72 @@ export function __wbg_new_f24b6d53abe5bc82(arg0, arg1) {
|
|
|
4742
4868
|
}
|
|
4743
4869
|
}
|
|
4744
4870
|
|
|
4745
|
-
export function
|
|
4746
|
-
const ret = new
|
|
4871
|
+
export function __wbg_new_from_slice_92f4d78ca282a2d2(arg0, arg1) {
|
|
4872
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
4747
4873
|
return addHeapObject(ret);
|
|
4748
4874
|
}
|
|
4749
4875
|
|
|
4750
|
-
export function
|
|
4751
|
-
const ret = new
|
|
4876
|
+
export function __wbg_new_no_args_ee98eee5275000a4(arg0, arg1) {
|
|
4877
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
4752
4878
|
return addHeapObject(ret);
|
|
4753
4879
|
}
|
|
4754
4880
|
|
|
4755
|
-
export function
|
|
4881
|
+
export function __wbg_new_with_length_01aa0dc35aa13543(arg0) {
|
|
4756
4882
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
4757
4883
|
return addHeapObject(ret);
|
|
4758
4884
|
}
|
|
4759
4885
|
|
|
4760
|
-
export function
|
|
4886
|
+
export function __wbg_new_with_str_and_init_0ae7728b6ec367b1() {
|
|
4761
4887
|
return handleError(function (arg0, arg1, arg2) {
|
|
4762
4888
|
const ret = new Request(getStringFromWasm0(arg0, arg1), getObject(arg2));
|
|
4763
4889
|
return addHeapObject(ret);
|
|
4764
4890
|
}, arguments);
|
|
4765
4891
|
}
|
|
4766
4892
|
|
|
4767
|
-
export function
|
|
4893
|
+
export function __wbg_new_with_u8_array_sequence_and_options_0c1d0bd56d93d25a() {
|
|
4768
4894
|
return handleError(function (arg0, arg1) {
|
|
4769
4895
|
const ret = new Blob(getObject(arg0), getObject(arg1));
|
|
4770
4896
|
return addHeapObject(ret);
|
|
4771
4897
|
}, arguments);
|
|
4772
4898
|
}
|
|
4773
4899
|
|
|
4774
|
-
export function
|
|
4775
|
-
const ret = getObject(arg0).next;
|
|
4776
|
-
return addHeapObject(ret);
|
|
4777
|
-
}
|
|
4778
|
-
|
|
4779
|
-
export function __wbg_next_6574e1a8a62d1055() {
|
|
4900
|
+
export function __wbg_next_020810e0ae8ebcb0() {
|
|
4780
4901
|
return handleError(function (arg0) {
|
|
4781
4902
|
const ret = getObject(arg0).next();
|
|
4782
4903
|
return addHeapObject(ret);
|
|
4783
4904
|
}, arguments);
|
|
4784
4905
|
}
|
|
4785
4906
|
|
|
4907
|
+
export function __wbg_next_2c826fe5dfec6b6a(arg0) {
|
|
4908
|
+
const ret = getObject(arg0).next;
|
|
4909
|
+
return addHeapObject(ret);
|
|
4910
|
+
}
|
|
4911
|
+
|
|
4786
4912
|
export function __wbg_node_905d3e251edff8a2(arg0) {
|
|
4787
4913
|
const ret = getObject(arg0).node;
|
|
4788
4914
|
return addHeapObject(ret);
|
|
4789
4915
|
}
|
|
4790
4916
|
|
|
4791
|
-
export function
|
|
4917
|
+
export function __wbg_now_f5ba683d8ce2c571(arg0) {
|
|
4792
4918
|
const ret = getObject(arg0).now();
|
|
4793
4919
|
return ret;
|
|
4794
4920
|
}
|
|
4795
4921
|
|
|
4796
|
-
export function
|
|
4922
|
+
export function __wbg_open_9d8c51d122a5a6ea() {
|
|
4797
4923
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
4798
4924
|
const ret = getObject(arg0).open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
|
|
4799
4925
|
return addHeapObject(ret);
|
|
4800
4926
|
}, arguments);
|
|
4801
4927
|
}
|
|
4802
4928
|
|
|
4803
|
-
export function
|
|
4929
|
+
export function __wbg_parse_2a704d6b78abb2b8() {
|
|
4804
4930
|
return handleError(function (arg0, arg1) {
|
|
4805
4931
|
const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
|
|
4806
4932
|
return addHeapObject(ret);
|
|
4807
4933
|
}, arguments);
|
|
4808
4934
|
}
|
|
4809
4935
|
|
|
4810
|
-
export function
|
|
4936
|
+
export function __wbg_preventDefault_1f362670ce7ef430(arg0) {
|
|
4811
4937
|
getObject(arg0).preventDefault();
|
|
4812
4938
|
}
|
|
4813
4939
|
|
|
@@ -4816,27 +4942,31 @@ export function __wbg_process_dc0fbacc7c1c06f7(arg0) {
|
|
|
4816
4942
|
return addHeapObject(ret);
|
|
4817
4943
|
}
|
|
4818
4944
|
|
|
4819
|
-
export function
|
|
4820
|
-
|
|
4821
|
-
return ret;
|
|
4945
|
+
export function __wbg_prototypesetcall_2a6620b6922694b2(arg0, arg1, arg2) {
|
|
4946
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
|
|
4822
4947
|
}
|
|
4823
4948
|
|
|
4824
|
-
export function
|
|
4825
|
-
|
|
4949
|
+
export function __wbg_push_df81a39d04db858c(arg0, arg1) {
|
|
4950
|
+
const ret = getObject(arg0).push(getObject(arg1));
|
|
4951
|
+
return ret;
|
|
4826
4952
|
}
|
|
4827
4953
|
|
|
4828
|
-
export function
|
|
4954
|
+
export function __wbg_queueMicrotask_34d692c25c47d05b(arg0) {
|
|
4829
4955
|
const ret = getObject(arg0).queueMicrotask;
|
|
4830
4956
|
return addHeapObject(ret);
|
|
4831
4957
|
}
|
|
4832
4958
|
|
|
4959
|
+
export function __wbg_queueMicrotask_9d76cacb20c84d58(arg0) {
|
|
4960
|
+
queueMicrotask(getObject(arg0));
|
|
4961
|
+
}
|
|
4962
|
+
|
|
4833
4963
|
export function __wbg_randomFillSync_ac0988aba3254290() {
|
|
4834
4964
|
return handleError(function (arg0, arg1) {
|
|
4835
4965
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
|
4836
4966
|
}, arguments);
|
|
4837
4967
|
}
|
|
4838
4968
|
|
|
4839
|
-
export function
|
|
4969
|
+
export function __wbg_remove_33695adbdbc52a3e() {
|
|
4840
4970
|
return handleError(function (arg0, arg1, arg2) {
|
|
4841
4971
|
let deferred0_0;
|
|
4842
4972
|
let deferred0_1;
|
|
@@ -4851,7 +4981,7 @@ export function __wbg_remove_4817686ccc51caea() {
|
|
|
4851
4981
|
}, arguments);
|
|
4852
4982
|
}
|
|
4853
4983
|
|
|
4854
|
-
export function
|
|
4984
|
+
export function __wbg_remove_dc431ea3d4bc3b57() {
|
|
4855
4985
|
return handleError(function (arg0, arg1, arg2) {
|
|
4856
4986
|
let deferred0_0;
|
|
4857
4987
|
let deferred0_1;
|
|
@@ -4873,12 +5003,12 @@ export function __wbg_require_60cc747a6bc5215a() {
|
|
|
4873
5003
|
}, arguments);
|
|
4874
5004
|
}
|
|
4875
5005
|
|
|
4876
|
-
export function
|
|
5006
|
+
export function __wbg_resolve_caf97c30b83f7053(arg0) {
|
|
4877
5007
|
const ret = Promise.resolve(getObject(arg0));
|
|
4878
5008
|
return addHeapObject(ret);
|
|
4879
5009
|
}
|
|
4880
5010
|
|
|
4881
|
-
export function
|
|
5011
|
+
export function __wbg_result_25e75004b82b9830() {
|
|
4882
5012
|
return handleError(function (arg0) {
|
|
4883
5013
|
const ret = getObject(arg0).result;
|
|
4884
5014
|
return addHeapObject(ret);
|
|
@@ -4897,15 +5027,7 @@ export function __wbg_setTimeout_ca12ead8b48245e2(arg0, arg1) {
|
|
|
4897
5027
|
return addHeapObject(ret);
|
|
4898
5028
|
}
|
|
4899
5029
|
|
|
4900
|
-
export function
|
|
4901
|
-
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
4902
|
-
}
|
|
4903
|
-
|
|
4904
|
-
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
4905
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
4906
|
-
}
|
|
4907
|
-
|
|
4908
|
-
export function __wbg_set_595fa1ff8502ba96() {
|
|
5030
|
+
export function __wbg_set_33fa6c07f568d210() {
|
|
4909
5031
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
4910
5032
|
let deferred0_0;
|
|
4911
5033
|
let deferred0_1;
|
|
@@ -4920,11 +5042,11 @@ export function __wbg_set_595fa1ff8502ba96() {
|
|
|
4920
5042
|
}, arguments);
|
|
4921
5043
|
}
|
|
4922
5044
|
|
|
4923
|
-
export function
|
|
4924
|
-
getObject(arg0)
|
|
5045
|
+
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
5046
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
4925
5047
|
}
|
|
4926
5048
|
|
|
4927
|
-
export function
|
|
5049
|
+
export function __wbg_set_9006732dd4d65e3c() {
|
|
4928
5050
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
4929
5051
|
let deferred0_0;
|
|
4930
5052
|
let deferred0_1;
|
|
@@ -4939,32 +5061,36 @@ export function __wbg_set_66f7f1ab8b1b0899() {
|
|
|
4939
5061
|
}, arguments);
|
|
4940
5062
|
}
|
|
4941
5063
|
|
|
4942
|
-
export function
|
|
5064
|
+
export function __wbg_set_907fb406c34a251d(arg0, arg1, arg2) {
|
|
4943
5065
|
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
4944
5066
|
return addHeapObject(ret);
|
|
4945
5067
|
}
|
|
4946
5068
|
|
|
4947
|
-
export function
|
|
5069
|
+
export function __wbg_set_body_3c365989753d61f4(arg0, arg1) {
|
|
4948
5070
|
getObject(arg0).body = getObject(arg1);
|
|
4949
5071
|
}
|
|
4950
5072
|
|
|
4951
|
-
export function
|
|
5073
|
+
export function __wbg_set_c213c871859d6500(arg0, arg1, arg2) {
|
|
5074
|
+
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
5075
|
+
}
|
|
5076
|
+
|
|
5077
|
+
export function __wbg_set_credentials_f621cd2d85c0c228(arg0, arg1) {
|
|
4952
5078
|
getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
4953
5079
|
}
|
|
4954
5080
|
|
|
4955
|
-
export function
|
|
5081
|
+
export function __wbg_set_headers_6926da238cd32ee4(arg0, arg1) {
|
|
4956
5082
|
getObject(arg0).headers = getObject(arg1);
|
|
4957
5083
|
}
|
|
4958
5084
|
|
|
4959
|
-
export function
|
|
5085
|
+
export function __wbg_set_method_c02d8cbbe204ac2d(arg0, arg1, arg2) {
|
|
4960
5086
|
getObject(arg0).method = getStringFromWasm0(arg1, arg2);
|
|
4961
5087
|
}
|
|
4962
5088
|
|
|
4963
|
-
export function
|
|
5089
|
+
export function __wbg_set_mode_52ef73cfa79639cb(arg0, arg1) {
|
|
4964
5090
|
getObject(arg0).mode = __wbindgen_enum_RequestMode[arg1];
|
|
4965
5091
|
}
|
|
4966
5092
|
|
|
4967
|
-
export function
|
|
5093
|
+
export function __wbg_set_name_c0e2d6f348c746f4(arg0, arg1, arg2) {
|
|
4968
5094
|
let deferred0_0;
|
|
4969
5095
|
let deferred0_1;
|
|
4970
5096
|
try {
|
|
@@ -4976,27 +5102,27 @@ export function __wbg_setname_c0e2d6f348c746f4(arg0, arg1, arg2) {
|
|
|
4976
5102
|
}
|
|
4977
5103
|
}
|
|
4978
5104
|
|
|
4979
|
-
export function
|
|
5105
|
+
export function __wbg_set_onerror_dc82fea584ffccaa(arg0, arg1) {
|
|
4980
5106
|
getObject(arg0).onerror = getObject(arg1);
|
|
4981
5107
|
}
|
|
4982
5108
|
|
|
4983
|
-
export function
|
|
5109
|
+
export function __wbg_set_onsuccess_f367d002b462109e(arg0, arg1) {
|
|
4984
5110
|
getObject(arg0).onsuccess = getObject(arg1);
|
|
4985
5111
|
}
|
|
4986
5112
|
|
|
4987
|
-
export function
|
|
5113
|
+
export function __wbg_set_onupgradeneeded_0a519a73284a1418(arg0, arg1) {
|
|
4988
5114
|
getObject(arg0).onupgradeneeded = getObject(arg1);
|
|
4989
5115
|
}
|
|
4990
5116
|
|
|
4991
|
-
export function
|
|
5117
|
+
export function __wbg_set_signal_dda2cf7ccb6bee0f(arg0, arg1) {
|
|
4992
5118
|
getObject(arg0).signal = getObject(arg1);
|
|
4993
5119
|
}
|
|
4994
5120
|
|
|
4995
|
-
export function
|
|
5121
|
+
export function __wbg_set_type_63fa4c18251f6545(arg0, arg1, arg2) {
|
|
4996
5122
|
getObject(arg0).type = getStringFromWasm0(arg1, arg2);
|
|
4997
5123
|
}
|
|
4998
5124
|
|
|
4999
|
-
export function
|
|
5125
|
+
export function __wbg_set_variant_d1d41b778dfe9c17(arg0, arg1, arg2) {
|
|
5000
5126
|
let deferred0_0;
|
|
5001
5127
|
let deferred0_1;
|
|
5002
5128
|
try {
|
|
@@ -5008,7 +5134,7 @@ export function __wbg_setvariant_d1d41b778dfe9c17(arg0, arg1, arg2) {
|
|
|
5008
5134
|
}
|
|
5009
5135
|
}
|
|
5010
5136
|
|
|
5011
|
-
export function
|
|
5137
|
+
export function __wbg_signal_4db5aa055bf9eb9a(arg0) {
|
|
5012
5138
|
const ret = getObject(arg0).signal;
|
|
5013
5139
|
return addHeapObject(ret);
|
|
5014
5140
|
}
|
|
@@ -5021,22 +5147,22 @@ export function __wbg_stack_0ed75d68575b0f3c(arg0, arg1) {
|
|
|
5021
5147
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5022
5148
|
}
|
|
5023
5149
|
|
|
5024
|
-
export function
|
|
5150
|
+
export function __wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e() {
|
|
5025
5151
|
const ret = typeof global === "undefined" ? null : global;
|
|
5026
5152
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
5027
5153
|
}
|
|
5028
5154
|
|
|
5029
|
-
export function
|
|
5155
|
+
export function __wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac() {
|
|
5030
5156
|
const ret = typeof globalThis === "undefined" ? null : globalThis;
|
|
5031
5157
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
5032
5158
|
}
|
|
5033
5159
|
|
|
5034
|
-
export function
|
|
5160
|
+
export function __wbg_static_accessor_SELF_6fdf4b64710cc91b() {
|
|
5035
5161
|
const ret = typeof self === "undefined" ? null : self;
|
|
5036
5162
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
5037
5163
|
}
|
|
5038
5164
|
|
|
5039
|
-
export function
|
|
5165
|
+
export function __wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2() {
|
|
5040
5166
|
const ret = typeof window === "undefined" ? null : window;
|
|
5041
5167
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
5042
5168
|
}
|
|
@@ -5046,51 +5172,51 @@ export function __wbg_static_accessor_performance_da77b3a901a72934() {
|
|
|
5046
5172
|
return addHeapObject(ret);
|
|
5047
5173
|
}
|
|
5048
5174
|
|
|
5049
|
-
export function
|
|
5175
|
+
export function __wbg_status_de7eed5a7a5bfd5d(arg0) {
|
|
5050
5176
|
const ret = getObject(arg0).status;
|
|
5051
5177
|
return ret;
|
|
5052
5178
|
}
|
|
5053
5179
|
|
|
5054
|
-
export function
|
|
5180
|
+
export function __wbg_stringify_b5fb28f6465d9c3e() {
|
|
5055
5181
|
return handleError(function (arg0) {
|
|
5056
5182
|
const ret = JSON.stringify(getObject(arg0));
|
|
5057
5183
|
return addHeapObject(ret);
|
|
5058
5184
|
}, arguments);
|
|
5059
5185
|
}
|
|
5060
5186
|
|
|
5061
|
-
export function
|
|
5187
|
+
export function __wbg_subarray_480600f3d6a9f26c(arg0, arg1, arg2) {
|
|
5062
5188
|
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
|
|
5063
5189
|
return addHeapObject(ret);
|
|
5064
5190
|
}
|
|
5065
5191
|
|
|
5066
|
-
export function
|
|
5192
|
+
export function __wbg_target_1447f5d3a6fa6fe0(arg0) {
|
|
5067
5193
|
const ret = getObject(arg0).target;
|
|
5068
5194
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
5069
5195
|
}
|
|
5070
5196
|
|
|
5071
|
-
export function
|
|
5197
|
+
export function __wbg_text_dc33c15c17bdfb52() {
|
|
5072
5198
|
return handleError(function (arg0) {
|
|
5073
5199
|
const ret = getObject(arg0).text();
|
|
5074
5200
|
return addHeapObject(ret);
|
|
5075
5201
|
}, arguments);
|
|
5076
5202
|
}
|
|
5077
5203
|
|
|
5078
|
-
export function
|
|
5204
|
+
export function __wbg_then_4f46f6544e6b4a28(arg0, arg1) {
|
|
5079
5205
|
const ret = getObject(arg0).then(getObject(arg1));
|
|
5080
5206
|
return addHeapObject(ret);
|
|
5081
5207
|
}
|
|
5082
5208
|
|
|
5083
|
-
export function
|
|
5209
|
+
export function __wbg_then_70d05cf780a18d77(arg0, arg1, arg2) {
|
|
5084
5210
|
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
|
|
5085
5211
|
return addHeapObject(ret);
|
|
5086
5212
|
}
|
|
5087
5213
|
|
|
5088
|
-
export function
|
|
5214
|
+
export function __wbg_transaction_9fb8349a0a81725c(arg0) {
|
|
5089
5215
|
const ret = getObject(arg0).transaction;
|
|
5090
5216
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
5091
5217
|
}
|
|
5092
5218
|
|
|
5093
|
-
export function
|
|
5219
|
+
export function __wbg_url_b36d2a5008eb056f(arg0, arg1) {
|
|
5094
5220
|
const ret = getObject(arg1).url;
|
|
5095
5221
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
5096
5222
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -5098,7 +5224,7 @@ export function __wbg_url_ae10c34ca209681d(arg0, arg1) {
|
|
|
5098
5224
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5099
5225
|
}
|
|
5100
5226
|
|
|
5101
|
-
export function
|
|
5227
|
+
export function __wbg_value_692627309814bb8c(arg0) {
|
|
5102
5228
|
const ret = getObject(arg0).value;
|
|
5103
5229
|
return addHeapObject(ret);
|
|
5104
5230
|
}
|
|
@@ -5108,150 +5234,116 @@ export function __wbg_versions_c01dfd4722a88165(arg0) {
|
|
|
5108
5234
|
return addHeapObject(ret);
|
|
5109
5235
|
}
|
|
5110
5236
|
|
|
5111
|
-
export function
|
|
5237
|
+
export function __wbg_warn_8f5b5437666d0885(arg0, arg1, arg2, arg3) {
|
|
5112
5238
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5113
5239
|
}
|
|
5114
5240
|
|
|
5115
|
-
export function
|
|
5116
|
-
|
|
5241
|
+
export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
5242
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5243
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
5117
5244
|
return addHeapObject(ret);
|
|
5118
5245
|
}
|
|
5119
5246
|
|
|
5120
|
-
export function
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
export function __wbindgen_bigint_from_i64(arg0) {
|
|
5130
|
-
const ret = arg0;
|
|
5247
|
+
export function __wbindgen_cast_36265b4dca1d434b(arg0, arg1) {
|
|
5248
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 268, function: Function { arguments: [], shim_idx: 269, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5249
|
+
const ret = makeMutClosure(
|
|
5250
|
+
arg0,
|
|
5251
|
+
arg1,
|
|
5252
|
+
wasm.wasm_bindgen__closure__destroy__h04ff7fddf688fec6,
|
|
5253
|
+
wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01,
|
|
5254
|
+
);
|
|
5131
5255
|
return addHeapObject(ret);
|
|
5132
5256
|
}
|
|
5133
5257
|
|
|
5134
|
-
export function
|
|
5258
|
+
export function __wbindgen_cast_4625c577ab2ec9ee(arg0) {
|
|
5259
|
+
// Cast intrinsic for `U64 -> Externref`.
|
|
5135
5260
|
const ret = BigInt.asUintN(64, arg0);
|
|
5136
5261
|
return addHeapObject(ret);
|
|
5137
5262
|
}
|
|
5138
5263
|
|
|
5139
|
-
export function
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
}
|
|
5145
|
-
|
|
5146
|
-
export function __wbindgen_boolean_get(arg0) {
|
|
5147
|
-
const v = getObject(arg0);
|
|
5148
|
-
const ret = typeof v === "boolean" ? (v ? 1 : 0) : 2;
|
|
5149
|
-
return ret;
|
|
5150
|
-
}
|
|
5151
|
-
|
|
5152
|
-
export function __wbindgen_cb_drop(arg0) {
|
|
5153
|
-
const obj = takeObject(arg0).original;
|
|
5154
|
-
if (obj.cnt-- == 1) {
|
|
5155
|
-
obj.a = 0;
|
|
5156
|
-
return true;
|
|
5157
|
-
}
|
|
5158
|
-
const ret = false;
|
|
5159
|
-
return ret;
|
|
5160
|
-
}
|
|
5161
|
-
|
|
5162
|
-
export function __wbindgen_closure_wrapper198(arg0, arg1, arg2) {
|
|
5163
|
-
const ret = makeMutClosure(arg0, arg1, 7, __wbg_adapter_54);
|
|
5264
|
+
export function __wbindgen_cast_5fea77eff9dd275c(arg0, arg1) {
|
|
5265
|
+
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5266
|
+
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5267
|
+
// Cast intrinsic for `Vector(NamedExternref("CipherRiskResult")) -> Externref`.
|
|
5268
|
+
const ret = v0;
|
|
5164
5269
|
return addHeapObject(ret);
|
|
5165
5270
|
}
|
|
5166
5271
|
|
|
5167
|
-
export function
|
|
5168
|
-
|
|
5272
|
+
export function __wbindgen_cast_7a6d185652cd8149(arg0, arg1) {
|
|
5273
|
+
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5274
|
+
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5275
|
+
// Cast intrinsic for `Vector(NamedExternref("Cipher")) -> Externref`.
|
|
5276
|
+
const ret = v0;
|
|
5169
5277
|
return addHeapObject(ret);
|
|
5170
5278
|
}
|
|
5171
5279
|
|
|
5172
|
-
export function
|
|
5173
|
-
|
|
5280
|
+
export function __wbindgen_cast_91244c1b651c8ba8(arg0, arg1) {
|
|
5281
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5, function: Function { arguments: [NamedExternref("IDBVersionChangeEvent")], shim_idx: 6, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5282
|
+
const ret = makeMutClosure(
|
|
5283
|
+
arg0,
|
|
5284
|
+
arg1,
|
|
5285
|
+
wasm.wasm_bindgen__closure__destroy__h7a400a8c6869e00b,
|
|
5286
|
+
wasm_bindgen__convert__closures_____invoke__h142f80da75ccedf5,
|
|
5287
|
+
);
|
|
5174
5288
|
return addHeapObject(ret);
|
|
5175
5289
|
}
|
|
5176
5290
|
|
|
5177
|
-
export function
|
|
5178
|
-
|
|
5291
|
+
export function __wbindgen_cast_98de615b9dbdc064(arg0, arg1) {
|
|
5292
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 268, function: Function { arguments: [Externref], shim_idx: 6, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5293
|
+
const ret = makeMutClosure(
|
|
5294
|
+
arg0,
|
|
5295
|
+
arg1,
|
|
5296
|
+
wasm.wasm_bindgen__closure__destroy__h04ff7fddf688fec6,
|
|
5297
|
+
wasm_bindgen__convert__closures_____invoke__h142f80da75ccedf5,
|
|
5298
|
+
);
|
|
5179
5299
|
return addHeapObject(ret);
|
|
5180
5300
|
}
|
|
5181
5301
|
|
|
5182
|
-
export function
|
|
5183
|
-
|
|
5302
|
+
export function __wbindgen_cast_9ae0607507abb057(arg0) {
|
|
5303
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
5304
|
+
const ret = arg0;
|
|
5184
5305
|
return addHeapObject(ret);
|
|
5185
5306
|
}
|
|
5186
5307
|
|
|
5187
|
-
export function
|
|
5188
|
-
|
|
5189
|
-
const
|
|
5190
|
-
const len1 = WASM_VECTOR_LEN;
|
|
5191
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5192
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5193
|
-
}
|
|
5194
|
-
|
|
5195
|
-
export function __wbindgen_error_new(arg0, arg1) {
|
|
5196
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
5308
|
+
export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
|
|
5309
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
5310
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
5197
5311
|
return addHeapObject(ret);
|
|
5198
5312
|
}
|
|
5199
5313
|
|
|
5200
|
-
export function
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
export function __wbindgen_is_bigint(arg0) {
|
|
5206
|
-
const ret = typeof getObject(arg0) === "bigint";
|
|
5207
|
-
return ret;
|
|
5208
|
-
}
|
|
5209
|
-
|
|
5210
|
-
export function __wbindgen_is_function(arg0) {
|
|
5211
|
-
const ret = typeof getObject(arg0) === "function";
|
|
5212
|
-
return ret;
|
|
5213
|
-
}
|
|
5214
|
-
|
|
5215
|
-
export function __wbindgen_is_object(arg0) {
|
|
5216
|
-
const val = getObject(arg0);
|
|
5217
|
-
const ret = typeof val === "object" && val !== null;
|
|
5218
|
-
return ret;
|
|
5219
|
-
}
|
|
5220
|
-
|
|
5221
|
-
export function __wbindgen_is_string(arg0) {
|
|
5222
|
-
const ret = typeof getObject(arg0) === "string";
|
|
5223
|
-
return ret;
|
|
5224
|
-
}
|
|
5225
|
-
|
|
5226
|
-
export function __wbindgen_is_undefined(arg0) {
|
|
5227
|
-
const ret = getObject(arg0) === undefined;
|
|
5228
|
-
return ret;
|
|
5229
|
-
}
|
|
5230
|
-
|
|
5231
|
-
export function __wbindgen_jsval_eq(arg0, arg1) {
|
|
5232
|
-
const ret = getObject(arg0) === getObject(arg1);
|
|
5233
|
-
return ret;
|
|
5234
|
-
}
|
|
5235
|
-
|
|
5236
|
-
export function __wbindgen_jsval_loose_eq(arg0, arg1) {
|
|
5237
|
-
const ret = getObject(arg0) == getObject(arg1);
|
|
5238
|
-
return ret;
|
|
5314
|
+
export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
|
|
5315
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
5316
|
+
const ret = arg0;
|
|
5317
|
+
return addHeapObject(ret);
|
|
5239
5318
|
}
|
|
5240
5319
|
|
|
5241
|
-
export function
|
|
5242
|
-
|
|
5320
|
+
export function __wbindgen_cast_e904f2c9fda6146b(arg0, arg1) {
|
|
5321
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 5, function: Function { arguments: [NamedExternref("Event")], shim_idx: 8, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
5322
|
+
const ret = makeMutClosure(
|
|
5323
|
+
arg0,
|
|
5324
|
+
arg1,
|
|
5325
|
+
wasm.wasm_bindgen__closure__destroy__h7a400a8c6869e00b,
|
|
5326
|
+
wasm_bindgen__convert__closures_____invoke__he84e41ce162f03b8,
|
|
5327
|
+
);
|
|
5243
5328
|
return addHeapObject(ret);
|
|
5244
5329
|
}
|
|
5245
5330
|
|
|
5246
|
-
export function
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5331
|
+
export function __wbindgen_cast_ef90a087adb7475d(arg0, arg1) {
|
|
5332
|
+
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5333
|
+
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5334
|
+
// Cast intrinsic for `Vector(NamedExternref("FolderView")) -> Externref`.
|
|
5335
|
+
const ret = v0;
|
|
5336
|
+
return addHeapObject(ret);
|
|
5251
5337
|
}
|
|
5252
5338
|
|
|
5253
|
-
export function
|
|
5254
|
-
|
|
5339
|
+
export function __wbindgen_cast_f31034722c398fdb(arg0, arg1) {
|
|
5340
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 520, function: Function { arguments: [], shim_idx: 269, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5341
|
+
const ret = makeMutClosure(
|
|
5342
|
+
arg0,
|
|
5343
|
+
arg1,
|
|
5344
|
+
wasm.wasm_bindgen__closure__destroy__h1cce7ce4a094839d,
|
|
5345
|
+
wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01,
|
|
5346
|
+
);
|
|
5255
5347
|
return addHeapObject(ret);
|
|
5256
5348
|
}
|
|
5257
5349
|
|
|
@@ -5263,23 +5355,3 @@ export function __wbindgen_object_clone_ref(arg0) {
|
|
|
5263
5355
|
export function __wbindgen_object_drop_ref(arg0) {
|
|
5264
5356
|
takeObject(arg0);
|
|
5265
5357
|
}
|
|
5266
|
-
|
|
5267
|
-
export function __wbindgen_string_get(arg0, arg1) {
|
|
5268
|
-
const obj = getObject(arg1);
|
|
5269
|
-
const ret = typeof obj === "string" ? obj : undefined;
|
|
5270
|
-
var ptr1 = isLikeNone(ret)
|
|
5271
|
-
? 0
|
|
5272
|
-
: passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
5273
|
-
var len1 = WASM_VECTOR_LEN;
|
|
5274
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5275
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5276
|
-
}
|
|
5277
|
-
|
|
5278
|
-
export function __wbindgen_string_new(arg0, arg1) {
|
|
5279
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
|
5280
|
-
return addHeapObject(ret);
|
|
5281
|
-
}
|
|
5282
|
-
|
|
5283
|
-
export function __wbindgen_throw(arg0, arg1) {
|
|
5284
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5285
|
-
}
|