@bitwarden/sdk-internal 0.2.0-main.33 → 0.2.0-main.35
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/bitwarden_wasm_internal.d.ts +3 -34
- package/bitwarden_wasm_internal_bg.js +458 -461
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +30 -30
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +3 -34
- package/node/bitwarden_wasm_internal.js +457 -460
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +30 -30
- package/package.json +1 -1
@@ -3,12 +3,15 @@ export function __wbg_set_wasm(val) {
|
|
3
3
|
wasm = val;
|
4
4
|
}
|
5
5
|
|
6
|
-
const
|
7
|
-
typeof TextDecoder === "undefined" ? (0, module.require)("util").TextDecoder : TextDecoder;
|
6
|
+
const heap = new Array(128).fill(undefined);
|
8
7
|
|
9
|
-
|
8
|
+
heap.push(undefined, null, true, false);
|
10
9
|
|
11
|
-
|
10
|
+
function getObject(idx) {
|
11
|
+
return heap[idx];
|
12
|
+
}
|
13
|
+
|
14
|
+
let WASM_VECTOR_LEN = 0;
|
12
15
|
|
13
16
|
let cachedUint8ArrayMemory0 = null;
|
14
17
|
|
@@ -19,44 +22,6 @@ function getUint8ArrayMemory0() {
|
|
19
22
|
return cachedUint8ArrayMemory0;
|
20
23
|
}
|
21
24
|
|
22
|
-
function getStringFromWasm0(ptr, len) {
|
23
|
-
ptr = ptr >>> 0;
|
24
|
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
25
|
-
}
|
26
|
-
|
27
|
-
const heap = new Array(128).fill(undefined);
|
28
|
-
|
29
|
-
heap.push(undefined, null, true, false);
|
30
|
-
|
31
|
-
let heap_next = heap.length;
|
32
|
-
|
33
|
-
function addHeapObject(obj) {
|
34
|
-
if (heap_next === heap.length) heap.push(heap.length + 1);
|
35
|
-
const idx = heap_next;
|
36
|
-
heap_next = heap[idx];
|
37
|
-
|
38
|
-
heap[idx] = obj;
|
39
|
-
return idx;
|
40
|
-
}
|
41
|
-
|
42
|
-
function getObject(idx) {
|
43
|
-
return heap[idx];
|
44
|
-
}
|
45
|
-
|
46
|
-
function dropObject(idx) {
|
47
|
-
if (idx < 132) return;
|
48
|
-
heap[idx] = heap_next;
|
49
|
-
heap_next = idx;
|
50
|
-
}
|
51
|
-
|
52
|
-
function takeObject(idx) {
|
53
|
-
const ret = getObject(idx);
|
54
|
-
dropObject(idx);
|
55
|
-
return ret;
|
56
|
-
}
|
57
|
-
|
58
|
-
let WASM_VECTOR_LEN = 0;
|
59
|
-
|
60
25
|
const lTextEncoder =
|
61
26
|
typeof TextEncoder === "undefined" ? (0, module.require)("util").TextEncoder : TextEncoder;
|
62
27
|
|
@@ -116,10 +81,6 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|
116
81
|
return ptr;
|
117
82
|
}
|
118
83
|
|
119
|
-
function isLikeNone(x) {
|
120
|
-
return x === undefined || x === null;
|
121
|
-
}
|
122
|
-
|
123
84
|
let cachedDataViewMemory0 = null;
|
124
85
|
|
125
86
|
function getDataViewMemory0() {
|
@@ -134,6 +95,85 @@ function getDataViewMemory0() {
|
|
134
95
|
return cachedDataViewMemory0;
|
135
96
|
}
|
136
97
|
|
98
|
+
const lTextDecoder =
|
99
|
+
typeof TextDecoder === "undefined" ? (0, module.require)("util").TextDecoder : TextDecoder;
|
100
|
+
|
101
|
+
let cachedTextDecoder = new lTextDecoder("utf-8", { ignoreBOM: true, fatal: true });
|
102
|
+
|
103
|
+
cachedTextDecoder.decode();
|
104
|
+
|
105
|
+
function getStringFromWasm0(ptr, len) {
|
106
|
+
ptr = ptr >>> 0;
|
107
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
108
|
+
}
|
109
|
+
|
110
|
+
let heap_next = heap.length;
|
111
|
+
|
112
|
+
function addHeapObject(obj) {
|
113
|
+
if (heap_next === heap.length) heap.push(heap.length + 1);
|
114
|
+
const idx = heap_next;
|
115
|
+
heap_next = heap[idx];
|
116
|
+
|
117
|
+
heap[idx] = obj;
|
118
|
+
return idx;
|
119
|
+
}
|
120
|
+
|
121
|
+
function handleError(f, args) {
|
122
|
+
try {
|
123
|
+
return f.apply(this, args);
|
124
|
+
} catch (e) {
|
125
|
+
wasm.__wbindgen_exn_store(addHeapObject(e));
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
function dropObject(idx) {
|
130
|
+
if (idx < 132) return;
|
131
|
+
heap[idx] = heap_next;
|
132
|
+
heap_next = idx;
|
133
|
+
}
|
134
|
+
|
135
|
+
function takeObject(idx) {
|
136
|
+
const ret = getObject(idx);
|
137
|
+
dropObject(idx);
|
138
|
+
return ret;
|
139
|
+
}
|
140
|
+
|
141
|
+
function isLikeNone(x) {
|
142
|
+
return x === undefined || x === null;
|
143
|
+
}
|
144
|
+
|
145
|
+
const CLOSURE_DTORS =
|
146
|
+
typeof FinalizationRegistry === "undefined"
|
147
|
+
? { register: () => {}, unregister: () => {} }
|
148
|
+
: new FinalizationRegistry((state) => {
|
149
|
+
wasm.__wbindgen_export_4.get(state.dtor)(state.a, state.b);
|
150
|
+
});
|
151
|
+
|
152
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
153
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
154
|
+
const real = (...args) => {
|
155
|
+
// First up with a closure we increment the internal reference
|
156
|
+
// count. This ensures that the Rust closure environment won't
|
157
|
+
// be deallocated while we're invoking it.
|
158
|
+
state.cnt++;
|
159
|
+
const a = state.a;
|
160
|
+
state.a = 0;
|
161
|
+
try {
|
162
|
+
return f(a, state.b, ...args);
|
163
|
+
} finally {
|
164
|
+
if (--state.cnt === 0) {
|
165
|
+
wasm.__wbindgen_export_4.get(state.dtor)(a, state.b);
|
166
|
+
CLOSURE_DTORS.unregister(state);
|
167
|
+
} else {
|
168
|
+
state.a = a;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
};
|
172
|
+
real.original = state;
|
173
|
+
CLOSURE_DTORS.register(real, state, state);
|
174
|
+
return real;
|
175
|
+
}
|
176
|
+
|
137
177
|
function debugString(val) {
|
138
178
|
// primitive types
|
139
179
|
const type = typeof val;
|
@@ -175,7 +215,7 @@ function debugString(val) {
|
|
175
215
|
// Test for built-in
|
176
216
|
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
177
217
|
let className;
|
178
|
-
if (builtInMatches.length > 1) {
|
218
|
+
if (builtInMatches && builtInMatches.length > 1) {
|
179
219
|
className = builtInMatches[1];
|
180
220
|
} else {
|
181
221
|
// Failed to match the standard '[object ClassName]'
|
@@ -199,45 +239,6 @@ function debugString(val) {
|
|
199
239
|
return className;
|
200
240
|
}
|
201
241
|
|
202
|
-
const CLOSURE_DTORS =
|
203
|
-
typeof FinalizationRegistry === "undefined"
|
204
|
-
? { register: () => {}, unregister: () => {} }
|
205
|
-
: new FinalizationRegistry((state) => {
|
206
|
-
wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b);
|
207
|
-
});
|
208
|
-
|
209
|
-
function makeMutClosure(arg0, arg1, dtor, f) {
|
210
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
211
|
-
const real = (...args) => {
|
212
|
-
// First up with a closure we increment the internal reference
|
213
|
-
// count. This ensures that the Rust closure environment won't
|
214
|
-
// be deallocated while we're invoking it.
|
215
|
-
state.cnt++;
|
216
|
-
const a = state.a;
|
217
|
-
state.a = 0;
|
218
|
-
try {
|
219
|
-
return f(a, state.b, ...args);
|
220
|
-
} finally {
|
221
|
-
if (--state.cnt === 0) {
|
222
|
-
wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
|
223
|
-
CLOSURE_DTORS.unregister(state);
|
224
|
-
} else {
|
225
|
-
state.a = a;
|
226
|
-
}
|
227
|
-
}
|
228
|
-
};
|
229
|
-
real.original = state;
|
230
|
-
CLOSURE_DTORS.register(real, state, state);
|
231
|
-
return real;
|
232
|
-
}
|
233
|
-
function __wbg_adapter_38(arg0, arg1, arg2) {
|
234
|
-
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc6535a5361f5caf9(
|
235
|
-
arg0,
|
236
|
-
arg1,
|
237
|
-
addHeapObject(arg2),
|
238
|
-
);
|
239
|
-
}
|
240
|
-
|
241
242
|
let stack_pointer = 128;
|
242
243
|
|
243
244
|
function addBorrowedObject(obj) {
|
@@ -317,15 +318,16 @@ export function generate_ssh_key(key_algorithm) {
|
|
317
318
|
}
|
318
319
|
}
|
319
320
|
|
320
|
-
function
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
321
|
+
function __wbg_adapter_38(arg0, arg1, arg2) {
|
322
|
+
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hb80710307d9edf75(
|
323
|
+
arg0,
|
324
|
+
arg1,
|
325
|
+
addHeapObject(arg2),
|
326
|
+
);
|
326
327
|
}
|
328
|
+
|
327
329
|
function __wbg_adapter_125(arg0, arg1, arg2, arg3) {
|
328
|
-
wasm.
|
330
|
+
wasm.wasm_bindgen__convert__closures__invoke2_mut__h1aea760ed40205bc(
|
329
331
|
arg0,
|
330
332
|
arg1,
|
331
333
|
addHeapObject(arg2),
|
@@ -333,6 +335,9 @@ function __wbg_adapter_125(arg0, arg1, arg2, arg3) {
|
|
333
335
|
);
|
334
336
|
}
|
335
337
|
|
338
|
+
/**
|
339
|
+
* @enum {0 | 1 | 2 | 3 | 4}
|
340
|
+
*/
|
336
341
|
export const LogLevel = Object.freeze({
|
337
342
|
Trace: 0,
|
338
343
|
0: "Trace",
|
@@ -587,181 +592,161 @@ export class ClientVault {
|
|
587
592
|
}
|
588
593
|
}
|
589
594
|
|
590
|
-
export function
|
591
|
-
const ret =
|
595
|
+
export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
|
596
|
+
const ret = String(getObject(arg1));
|
597
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
598
|
+
const len1 = WASM_VECTOR_LEN;
|
599
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
600
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
601
|
+
}
|
602
|
+
|
603
|
+
export function __wbg_abort_05026c983d86824c(arg0) {
|
604
|
+
getObject(arg0).abort();
|
605
|
+
}
|
606
|
+
|
607
|
+
export function __wbg_append_66f7cb821a84ee22() {
|
608
|
+
return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
609
|
+
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
610
|
+
}, arguments);
|
611
|
+
}
|
612
|
+
|
613
|
+
export function __wbg_append_72d1635ad8643998() {
|
614
|
+
return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
615
|
+
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
616
|
+
}, arguments);
|
617
|
+
}
|
618
|
+
|
619
|
+
export function __wbg_append_7606a4b52c36db7b() {
|
620
|
+
return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
|
621
|
+
getObject(arg0).append(
|
622
|
+
getStringFromWasm0(arg1, arg2),
|
623
|
+
getObject(arg3),
|
624
|
+
getStringFromWasm0(arg4, arg5),
|
625
|
+
);
|
626
|
+
}, arguments);
|
627
|
+
}
|
628
|
+
|
629
|
+
export function __wbg_append_f513a7a3683bdc23() {
|
630
|
+
return handleError(function (arg0, arg1, arg2, arg3) {
|
631
|
+
getObject(arg0).append(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
632
|
+
}, arguments);
|
633
|
+
}
|
634
|
+
|
635
|
+
export function __wbg_buffer_61b7ce01341d7f88(arg0) {
|
636
|
+
const ret = getObject(arg0).buffer;
|
592
637
|
return addHeapObject(ret);
|
593
638
|
}
|
594
639
|
|
595
|
-
export function
|
640
|
+
export function __wbg_call_500db948e69c7330() {
|
641
|
+
return handleError(function (arg0, arg1, arg2) {
|
642
|
+
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
|
643
|
+
return addHeapObject(ret);
|
644
|
+
}, arguments);
|
645
|
+
}
|
646
|
+
|
647
|
+
export function __wbg_call_b0d8e36992d9900d() {
|
596
648
|
return handleError(function (arg0, arg1) {
|
597
|
-
const ret =
|
649
|
+
const ret = getObject(arg0).call(getObject(arg1));
|
598
650
|
return addHeapObject(ret);
|
599
651
|
}, arguments);
|
600
652
|
}
|
601
653
|
|
602
|
-
export function
|
603
|
-
|
654
|
+
export function __wbg_crypto_ed58b8e10a292839(arg0) {
|
655
|
+
const ret = getObject(arg0).crypto;
|
656
|
+
return addHeapObject(ret);
|
604
657
|
}
|
605
658
|
|
606
|
-
export function
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
659
|
+
export function __wbg_debug_19114f11037e4658(arg0, arg1, arg2, arg3) {
|
660
|
+
console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
661
|
+
}
|
662
|
+
|
663
|
+
export function __wbg_done_f22c1561fa919baa(arg0) {
|
664
|
+
const ret = getObject(arg0).done;
|
665
|
+
return ret;
|
666
|
+
}
|
667
|
+
|
668
|
+
export function __wbg_entries_4f2bb9b0d701c0f6(arg0) {
|
669
|
+
const ret = Object.entries(getObject(arg0));
|
670
|
+
return addHeapObject(ret);
|
671
|
+
}
|
672
|
+
|
673
|
+
export function __wbg_error_483d659117b6f3f6(arg0, arg1, arg2, arg3) {
|
674
|
+
console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
615
675
|
}
|
616
676
|
|
617
|
-
export function
|
677
|
+
export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
|
618
678
|
let deferred0_0;
|
619
679
|
let deferred0_1;
|
620
680
|
try {
|
621
681
|
deferred0_0 = arg0;
|
622
682
|
deferred0_1 = arg1;
|
623
|
-
|
624
|
-
return addHeapObject(ret);
|
683
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
625
684
|
} finally {
|
626
685
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
627
686
|
}
|
628
687
|
}
|
629
688
|
|
630
|
-
export function
|
631
|
-
|
632
|
-
let deferred0_1;
|
633
|
-
try {
|
634
|
-
deferred0_0 = arg1;
|
635
|
-
deferred0_1 = arg2;
|
636
|
-
getObject(arg0).name = getStringFromWasm0(arg1, arg2);
|
637
|
-
} finally {
|
638
|
-
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
639
|
-
}
|
640
|
-
}
|
641
|
-
|
642
|
-
export function __wbg_setvariant_262a12673324f71b(arg0, arg1, arg2) {
|
643
|
-
let deferred0_0;
|
644
|
-
let deferred0_1;
|
645
|
-
try {
|
646
|
-
deferred0_0 = arg1;
|
647
|
-
deferred0_1 = arg2;
|
648
|
-
getObject(arg0).variant = getStringFromWasm0(arg1, arg2);
|
649
|
-
} finally {
|
650
|
-
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
651
|
-
}
|
652
|
-
}
|
653
|
-
|
654
|
-
export function __wbindgen_jsval_loose_eq(arg0, arg1) {
|
655
|
-
const ret = getObject(arg0) == getObject(arg1);
|
656
|
-
return ret;
|
657
|
-
}
|
658
|
-
|
659
|
-
export function __wbindgen_is_object(arg0) {
|
660
|
-
const val = getObject(arg0);
|
661
|
-
const ret = typeof val === "object" && val !== null;
|
662
|
-
return ret;
|
663
|
-
}
|
664
|
-
|
665
|
-
export function __wbg_getwithrefkey_edc2c8960f0f1191(arg0, arg1) {
|
666
|
-
const ret = getObject(arg0)[getObject(arg1)];
|
689
|
+
export function __wbg_fetch_229368eecee9d217(arg0, arg1) {
|
690
|
+
const ret = getObject(arg0).fetch(getObject(arg1));
|
667
691
|
return addHeapObject(ret);
|
668
692
|
}
|
669
693
|
|
670
|
-
export function
|
671
|
-
const ret = getObject(arg0)
|
672
|
-
return ret;
|
673
|
-
}
|
674
|
-
|
675
|
-
export function __wbindgen_in(arg0, arg1) {
|
676
|
-
const ret = getObject(arg0) in getObject(arg1);
|
677
|
-
return ret;
|
678
|
-
}
|
679
|
-
|
680
|
-
export function __wbg_isSafeInteger_b9dff570f01a9100(arg0) {
|
681
|
-
const ret = Number.isSafeInteger(getObject(arg0));
|
682
|
-
return ret;
|
683
|
-
}
|
684
|
-
|
685
|
-
export function __wbindgen_as_number(arg0) {
|
686
|
-
const ret = +getObject(arg0);
|
687
|
-
return ret;
|
688
|
-
}
|
689
|
-
|
690
|
-
export function __wbindgen_is_string(arg0) {
|
691
|
-
const ret = typeof getObject(arg0) === "string";
|
692
|
-
return ret;
|
693
|
-
}
|
694
|
-
|
695
|
-
export function __wbg_entries_c02034de337d3ee2(arg0) {
|
696
|
-
const ret = Object.entries(getObject(arg0));
|
694
|
+
export function __wbg_fetch_b335d17f45a8b5a1(arg0) {
|
695
|
+
const ret = fetch(getObject(arg0));
|
697
696
|
return addHeapObject(ret);
|
698
697
|
}
|
699
698
|
|
700
|
-
export function
|
701
|
-
|
702
|
-
|
699
|
+
export function __wbg_getRandomValues_bcb4912f16000dc4() {
|
700
|
+
return handleError(function (arg0, arg1) {
|
701
|
+
getObject(arg0).getRandomValues(getObject(arg1));
|
702
|
+
}, arguments);
|
703
703
|
}
|
704
704
|
|
705
|
-
export function
|
705
|
+
export function __wbg_get_9aa3dff3f0266054(arg0, arg1) {
|
706
706
|
const ret = getObject(arg0)[arg1 >>> 0];
|
707
707
|
return addHeapObject(ret);
|
708
708
|
}
|
709
709
|
|
710
|
-
export function
|
711
|
-
return handleError(function (arg0, arg1
|
712
|
-
const ret =
|
710
|
+
export function __wbg_get_bbccf8970793c087() {
|
711
|
+
return handleError(function (arg0, arg1) {
|
712
|
+
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
713
713
|
return addHeapObject(ret);
|
714
714
|
}, arguments);
|
715
715
|
}
|
716
716
|
|
717
|
-
export function
|
718
|
-
const ret =
|
717
|
+
export function __wbg_getwithrefkey_1dc361bd10053bfe(arg0, arg1) {
|
718
|
+
const ret = getObject(arg0)[getObject(arg1)];
|
719
719
|
return addHeapObject(ret);
|
720
720
|
}
|
721
721
|
|
722
|
-
export function
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
export function __wbg_new_a9ae04a5200606a5() {
|
727
|
-
return handleError(function () {
|
728
|
-
const ret = new Headers();
|
729
|
-
return addHeapObject(ret);
|
722
|
+
export function __wbg_has_94c2fc1d261bbfe9() {
|
723
|
+
return handleError(function (arg0, arg1) {
|
724
|
+
const ret = Reflect.has(getObject(arg0), getObject(arg1));
|
725
|
+
return ret;
|
730
726
|
}, arguments);
|
731
727
|
}
|
732
728
|
|
733
|
-
export function
|
734
|
-
getObject(arg0).headers
|
735
|
-
}
|
736
|
-
|
737
|
-
export function __wbg_setmode_4919fd636102c586(arg0, arg1) {
|
738
|
-
getObject(arg0).mode = __wbindgen_enum_RequestMode[arg1];
|
739
|
-
}
|
740
|
-
|
741
|
-
export function __wbg_setcredentials_a4e661320cdb9738(arg0, arg1) {
|
742
|
-
getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
|
743
|
-
}
|
744
|
-
|
745
|
-
export function __wbg_setbody_aa8b691bec428bf4(arg0, arg1) {
|
746
|
-
getObject(arg0).body = getObject(arg1);
|
747
|
-
}
|
748
|
-
|
749
|
-
export function __wbg_signal_9acfcec9e7dffc22(arg0) {
|
750
|
-
const ret = getObject(arg0).signal;
|
729
|
+
export function __wbg_headers_24e3e19fe3f187c0(arg0) {
|
730
|
+
const ret = getObject(arg0).headers;
|
751
731
|
return addHeapObject(ret);
|
752
732
|
}
|
753
733
|
|
754
|
-
export function
|
755
|
-
getObject(arg0)
|
734
|
+
export function __wbg_info_18e75e6ce8a36a90(arg0, arg1, arg2, arg3) {
|
735
|
+
console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
756
736
|
}
|
757
737
|
|
758
|
-
export function
|
759
|
-
|
760
|
-
|
761
|
-
|
738
|
+
export function __wbg_instanceof_ArrayBuffer_670ddde44cdb2602(arg0) {
|
739
|
+
let result;
|
740
|
+
try {
|
741
|
+
result = getObject(arg0) instanceof ArrayBuffer;
|
742
|
+
} catch (_) {
|
743
|
+
result = false;
|
744
|
+
}
|
745
|
+
const ret = result;
|
746
|
+
return ret;
|
762
747
|
}
|
763
748
|
|
764
|
-
export function
|
749
|
+
export function __wbg_instanceof_Response_d3453657e10c4300(arg0) {
|
765
750
|
let result;
|
766
751
|
try {
|
767
752
|
result = getObject(arg0) instanceof Response;
|
@@ -772,80 +757,66 @@ export function __wbg_instanceof_Response_3c0e210a57ff751d(arg0) {
|
|
772
757
|
return ret;
|
773
758
|
}
|
774
759
|
|
775
|
-
export function
|
776
|
-
|
760
|
+
export function __wbg_instanceof_Uint8Array_28af5bc19d6acad8(arg0) {
|
761
|
+
let result;
|
762
|
+
try {
|
763
|
+
result = getObject(arg0) instanceof Uint8Array;
|
764
|
+
} catch (_) {
|
765
|
+
result = false;
|
766
|
+
}
|
767
|
+
const ret = result;
|
777
768
|
return ret;
|
778
769
|
}
|
779
770
|
|
780
|
-
export function
|
781
|
-
const ret = getObject(
|
782
|
-
|
783
|
-
const len1 = WASM_VECTOR_LEN;
|
784
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
785
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
771
|
+
export function __wbg_isSafeInteger_12f5549b2fca23f4(arg0) {
|
772
|
+
const ret = Number.isSafeInteger(getObject(arg0));
|
773
|
+
return ret;
|
786
774
|
}
|
787
775
|
|
788
|
-
export function
|
789
|
-
const ret =
|
776
|
+
export function __wbg_iterator_23604bb983791576() {
|
777
|
+
const ret = Symbol.iterator;
|
790
778
|
return addHeapObject(ret);
|
791
779
|
}
|
792
780
|
|
793
|
-
export function
|
794
|
-
|
795
|
-
const ret = getObject(arg0).next();
|
796
|
-
return addHeapObject(ret);
|
797
|
-
}, arguments);
|
798
|
-
}
|
799
|
-
|
800
|
-
export function __wbg_done_983b5ffcaec8c583(arg0) {
|
801
|
-
const ret = getObject(arg0).done;
|
781
|
+
export function __wbg_length_65d1cd11729ced11(arg0) {
|
782
|
+
const ret = getObject(arg0).length;
|
802
783
|
return ret;
|
803
784
|
}
|
804
785
|
|
805
|
-
export function
|
806
|
-
const ret = getObject(arg0).
|
807
|
-
return
|
786
|
+
export function __wbg_length_d65cf0786bfc5739(arg0) {
|
787
|
+
const ret = getObject(arg0).length;
|
788
|
+
return ret;
|
808
789
|
}
|
809
790
|
|
810
|
-
export function
|
811
|
-
|
812
|
-
const ret = JSON.stringify(getObject(arg0));
|
813
|
-
return addHeapObject(ret);
|
814
|
-
}, arguments);
|
791
|
+
export function __wbg_log_bc77772961bf21bb(arg0, arg1, arg2, arg3) {
|
792
|
+
console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
815
793
|
}
|
816
794
|
|
817
|
-
export function
|
818
|
-
getObject(arg0).
|
795
|
+
export function __wbg_msCrypto_0a36e2ec3a343d26(arg0) {
|
796
|
+
const ret = getObject(arg0).msCrypto;
|
797
|
+
return addHeapObject(ret);
|
819
798
|
}
|
820
799
|
|
821
|
-
export function
|
822
|
-
return handleError(function (
|
823
|
-
const ret =
|
800
|
+
export function __wbg_new_079af0206358fe9d() {
|
801
|
+
return handleError(function () {
|
802
|
+
const ret = new FormData();
|
824
803
|
return addHeapObject(ret);
|
825
804
|
}, arguments);
|
826
805
|
}
|
827
806
|
|
828
|
-
export function
|
829
|
-
const ret =
|
807
|
+
export function __wbg_new_254fa9eac11932ae() {
|
808
|
+
const ret = new Array();
|
830
809
|
return addHeapObject(ret);
|
831
810
|
}
|
832
811
|
|
833
|
-
export function
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
}
|
839
|
-
const ret = false;
|
840
|
-
return ret;
|
841
|
-
}
|
842
|
-
|
843
|
-
export function __wbindgen_error_new(arg0, arg1) {
|
844
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
845
|
-
return addHeapObject(ret);
|
812
|
+
export function __wbg_new_35d748855c4620b9() {
|
813
|
+
return handleError(function () {
|
814
|
+
const ret = new Headers();
|
815
|
+
return addHeapObject(ret);
|
816
|
+
}, arguments);
|
846
817
|
}
|
847
818
|
|
848
|
-
export function
|
819
|
+
export function __wbg_new_3d446df9155128ef(arg0, arg1) {
|
849
820
|
try {
|
850
821
|
var state0 = { a: arg0, b: arg1 };
|
851
822
|
var cb0 = (arg0, arg1) => {
|
@@ -864,287 +835,281 @@ export function __wbg_new_1073970097e5a420(arg0, arg1) {
|
|
864
835
|
}
|
865
836
|
}
|
866
837
|
|
867
|
-
export function
|
868
|
-
getObject(arg0)
|
838
|
+
export function __wbg_new_3ff5b33b1ce712df(arg0) {
|
839
|
+
const ret = new Uint8Array(getObject(arg0));
|
840
|
+
return addHeapObject(ret);
|
869
841
|
}
|
870
842
|
|
871
|
-
export function
|
872
|
-
|
843
|
+
export function __wbg_new_5f48f21d4be11586() {
|
844
|
+
return handleError(function () {
|
845
|
+
const ret = new AbortController();
|
846
|
+
return addHeapObject(ret);
|
847
|
+
}, arguments);
|
848
|
+
}
|
849
|
+
|
850
|
+
export function __wbg_new_6799ef630abee97c(arg0, arg1) {
|
851
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
873
852
|
return addHeapObject(ret);
|
874
853
|
}
|
875
854
|
|
876
|
-
export function
|
877
|
-
const ret =
|
878
|
-
|
879
|
-
const len1 = WASM_VECTOR_LEN;
|
880
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
881
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
855
|
+
export function __wbg_new_688846f374351c92() {
|
856
|
+
const ret = new Object();
|
857
|
+
return addHeapObject(ret);
|
882
858
|
}
|
883
859
|
|
884
|
-
export function
|
860
|
+
export function __wbg_new_8a6f238a6ece86ea() {
|
861
|
+
const ret = new Error();
|
862
|
+
return addHeapObject(ret);
|
863
|
+
}
|
864
|
+
|
865
|
+
export function __wbg_new_f24b6d53abe5bc82(arg0, arg1) {
|
885
866
|
let deferred0_0;
|
886
867
|
let deferred0_1;
|
887
868
|
try {
|
888
869
|
deferred0_0 = arg0;
|
889
870
|
deferred0_1 = arg1;
|
890
|
-
|
871
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
872
|
+
return addHeapObject(ret);
|
891
873
|
} finally {
|
892
874
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
893
875
|
}
|
894
876
|
}
|
895
877
|
|
896
|
-
export function
|
897
|
-
const ret =
|
878
|
+
export function __wbg_newnoargs_fd9e4bf8be2bc16d(arg0, arg1) {
|
879
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
898
880
|
return addHeapObject(ret);
|
899
881
|
}
|
900
882
|
|
901
|
-
export function
|
902
|
-
const ret = getObject(arg0)
|
883
|
+
export function __wbg_newwithbyteoffsetandlength_ba35896968751d91(arg0, arg1, arg2) {
|
884
|
+
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
903
885
|
return addHeapObject(ret);
|
904
886
|
}
|
905
887
|
|
906
|
-
export function
|
907
|
-
const ret =
|
888
|
+
export function __wbg_newwithlength_34ce8f1051e74449(arg0) {
|
889
|
+
const ret = new Uint8Array(arg0 >>> 0);
|
908
890
|
return addHeapObject(ret);
|
909
891
|
}
|
910
892
|
|
911
|
-
export function
|
912
|
-
|
913
|
-
|
893
|
+
export function __wbg_newwithstrandinit_a1f6583f20e4faff() {
|
894
|
+
return handleError(function (arg0, arg1, arg2) {
|
895
|
+
const ret = new Request(getStringFromWasm0(arg0, arg1), getObject(arg2));
|
896
|
+
return addHeapObject(ret);
|
897
|
+
}, arguments);
|
914
898
|
}
|
915
899
|
|
916
|
-
export function
|
917
|
-
return handleError(function () {
|
918
|
-
const ret =
|
900
|
+
export function __wbg_newwithu8arraysequenceandoptions_75a3b40c32d6c988() {
|
901
|
+
return handleError(function (arg0, arg1) {
|
902
|
+
const ret = new Blob(getObject(arg0), getObject(arg1));
|
919
903
|
return addHeapObject(ret);
|
920
904
|
}, arguments);
|
921
905
|
}
|
922
906
|
|
923
|
-
export function
|
924
|
-
|
925
|
-
|
907
|
+
export function __wbg_next_01dd9234a5bf6d05() {
|
908
|
+
return handleError(function (arg0) {
|
909
|
+
const ret = getObject(arg0).next();
|
910
|
+
return addHeapObject(ret);
|
911
|
+
}, arguments);
|
926
912
|
}
|
927
913
|
|
928
|
-
export function
|
929
|
-
const ret = getObject(arg0).
|
914
|
+
export function __wbg_next_137428deb98342b0(arg0) {
|
915
|
+
const ret = getObject(arg0).next;
|
930
916
|
return addHeapObject(ret);
|
931
917
|
}
|
932
918
|
|
933
|
-
export function
|
934
|
-
const ret =
|
919
|
+
export function __wbg_node_02999533c4ea02e3(arg0) {
|
920
|
+
const ret = getObject(arg0).node;
|
935
921
|
return addHeapObject(ret);
|
936
922
|
}
|
937
923
|
|
938
|
-
export function
|
939
|
-
const ret =
|
924
|
+
export function __wbg_process_5c1d670bc53614b8(arg0) {
|
925
|
+
const ret = getObject(arg0).process;
|
940
926
|
return addHeapObject(ret);
|
941
927
|
}
|
942
928
|
|
943
|
-
export function
|
944
|
-
const ret = getObject(arg0).
|
945
|
-
return
|
929
|
+
export function __wbg_push_6edad0df4b546b2c(arg0, arg1) {
|
930
|
+
const ret = getObject(arg0).push(getObject(arg1));
|
931
|
+
return ret;
|
946
932
|
}
|
947
933
|
|
948
|
-
export function
|
949
|
-
|
934
|
+
export function __wbg_queueMicrotask_2181040e064c0dc8(arg0) {
|
935
|
+
queueMicrotask(getObject(arg0));
|
936
|
+
}
|
937
|
+
|
938
|
+
export function __wbg_queueMicrotask_ef9ac43769cbcc4f(arg0) {
|
939
|
+
const ret = getObject(arg0).queueMicrotask;
|
950
940
|
return addHeapObject(ret);
|
951
941
|
}
|
952
942
|
|
953
|
-
export function
|
943
|
+
export function __wbg_randomFillSync_ab2cfe79ebbf2740() {
|
954
944
|
return handleError(function (arg0, arg1) {
|
955
945
|
getObject(arg0).randomFillSync(takeObject(arg1));
|
956
946
|
}, arguments);
|
957
947
|
}
|
958
948
|
|
959
|
-
export function
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
export function __wbg_getRandomValues_3aa56aa6edec874c() {
|
965
|
-
return handleError(function (arg0, arg1) {
|
966
|
-
getObject(arg0).getRandomValues(getObject(arg1));
|
949
|
+
export function __wbg_require_79b1e9274cde3c87() {
|
950
|
+
return handleError(function () {
|
951
|
+
const ret = module.require;
|
952
|
+
return addHeapObject(ret);
|
967
953
|
}, arguments);
|
968
954
|
}
|
969
955
|
|
970
|
-
export function
|
971
|
-
const ret =
|
956
|
+
export function __wbg_resolve_0bf7c44d641804f9(arg0) {
|
957
|
+
const ret = Promise.resolve(getObject(arg0));
|
972
958
|
return addHeapObject(ret);
|
973
959
|
}
|
974
960
|
|
975
|
-
export function
|
961
|
+
export function __wbg_set_23d69db4e5c66a6e(arg0, arg1, arg2) {
|
976
962
|
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
977
963
|
}
|
978
964
|
|
979
|
-
export function
|
980
|
-
|
981
|
-
const ret = self.self;
|
982
|
-
return addHeapObject(ret);
|
983
|
-
}, arguments);
|
984
|
-
}
|
985
|
-
|
986
|
-
export function __wbg_window_52dd9f07d03fd5f8() {
|
987
|
-
return handleError(function () {
|
988
|
-
const ret = window.window;
|
989
|
-
return addHeapObject(ret);
|
990
|
-
}, arguments);
|
965
|
+
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
966
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
991
967
|
}
|
992
968
|
|
993
|
-
export function
|
994
|
-
|
995
|
-
const ret = globalThis.globalThis;
|
996
|
-
return addHeapObject(ret);
|
997
|
-
}, arguments);
|
969
|
+
export function __wbg_setbody_64920df008e48adc(arg0, arg1) {
|
970
|
+
getObject(arg0).body = getObject(arg1);
|
998
971
|
}
|
999
972
|
|
1000
|
-
export function
|
1001
|
-
|
1002
|
-
const ret = global.global;
|
1003
|
-
return addHeapObject(ret);
|
1004
|
-
}, arguments);
|
973
|
+
export function __wbg_setcredentials_cfc15e48e3a3a535(arg0, arg1) {
|
974
|
+
getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
|
1005
975
|
}
|
1006
976
|
|
1007
|
-
export function
|
1008
|
-
|
1009
|
-
return addHeapObject(ret);
|
977
|
+
export function __wbg_setheaders_4c921e8e226bdfa7(arg0, arg1) {
|
978
|
+
getObject(arg0).headers = getObject(arg1);
|
1010
979
|
}
|
1011
980
|
|
1012
|
-
export function
|
1013
|
-
|
1014
|
-
const ret = getObject(arg0).call(getObject(arg1));
|
1015
|
-
return addHeapObject(ret);
|
1016
|
-
}, arguments);
|
981
|
+
export function __wbg_setmethod_cfc7f688ba46a6be(arg0, arg1, arg2) {
|
982
|
+
getObject(arg0).method = getStringFromWasm0(arg1, arg2);
|
1017
983
|
}
|
1018
984
|
|
1019
|
-
export function
|
1020
|
-
|
1021
|
-
return addHeapObject(ret);
|
985
|
+
export function __wbg_setmode_cd03637eb7da01e0(arg0, arg1) {
|
986
|
+
getObject(arg0).mode = __wbindgen_enum_RequestMode[arg1];
|
1022
987
|
}
|
1023
988
|
|
1024
|
-
export function
|
1025
|
-
|
1026
|
-
|
989
|
+
export function __wbg_setname_c0e2d6f348c746f4(arg0, arg1, arg2) {
|
990
|
+
let deferred0_0;
|
991
|
+
let deferred0_1;
|
992
|
+
try {
|
993
|
+
deferred0_0 = arg1;
|
994
|
+
deferred0_1 = arg2;
|
995
|
+
getObject(arg0).name = getStringFromWasm0(arg1, arg2);
|
996
|
+
} finally {
|
997
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
998
|
+
}
|
1027
999
|
}
|
1028
1000
|
|
1029
|
-
export function
|
1030
|
-
|
1031
|
-
return addHeapObject(ret);
|
1001
|
+
export function __wbg_setsignal_f766190d206f09e5(arg0, arg1) {
|
1002
|
+
getObject(arg0).signal = getObject(arg1);
|
1032
1003
|
}
|
1033
1004
|
|
1034
|
-
export function
|
1035
|
-
|
1036
|
-
return ret;
|
1005
|
+
export function __wbg_settype_fd39465d237c2f36(arg0, arg1, arg2) {
|
1006
|
+
getObject(arg0).type = getStringFromWasm0(arg1, arg2);
|
1037
1007
|
}
|
1038
1008
|
|
1039
|
-
export function
|
1040
|
-
let
|
1009
|
+
export function __wbg_setvariant_d1d41b778dfe9c17(arg0, arg1, arg2) {
|
1010
|
+
let deferred0_0;
|
1011
|
+
let deferred0_1;
|
1041
1012
|
try {
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1013
|
+
deferred0_0 = arg1;
|
1014
|
+
deferred0_1 = arg2;
|
1015
|
+
getObject(arg0).variant = getStringFromWasm0(arg1, arg2);
|
1016
|
+
} finally {
|
1017
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
1045
1018
|
}
|
1046
|
-
const ret = result;
|
1047
|
-
return ret;
|
1048
1019
|
}
|
1049
1020
|
|
1050
|
-
export function
|
1051
|
-
const ret =
|
1021
|
+
export function __wbg_signal_1fdadeba2d04660e(arg0) {
|
1022
|
+
const ret = getObject(arg0).signal;
|
1052
1023
|
return addHeapObject(ret);
|
1053
1024
|
}
|
1054
1025
|
|
1055
|
-
export function
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1026
|
+
export function __wbg_stack_0ed75d68575b0f3c(arg0, arg1) {
|
1027
|
+
const ret = getObject(arg1).stack;
|
1028
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
1029
|
+
const len1 = WASM_VECTOR_LEN;
|
1030
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
1031
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
1060
1032
|
}
|
1061
1033
|
|
1062
|
-
export function
|
1063
|
-
const ret =
|
1064
|
-
return addHeapObject(ret);
|
1034
|
+
export function __wbg_static_accessor_GLOBAL_0be7472e492ad3e3() {
|
1035
|
+
const ret = typeof global === "undefined" ? null : global;
|
1036
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
1065
1037
|
}
|
1066
1038
|
|
1067
|
-
export function
|
1068
|
-
const ret =
|
1069
|
-
return addHeapObject(ret);
|
1039
|
+
export function __wbg_static_accessor_GLOBAL_THIS_1a6eb482d12c9bfb() {
|
1040
|
+
const ret = typeof globalThis === "undefined" ? null : globalThis;
|
1041
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
1070
1042
|
}
|
1071
1043
|
|
1072
|
-
export function
|
1073
|
-
const ret =
|
1074
|
-
return addHeapObject(ret);
|
1044
|
+
export function __wbg_static_accessor_SELF_1dc398a895c82351() {
|
1045
|
+
const ret = typeof self === "undefined" ? null : self;
|
1046
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
1075
1047
|
}
|
1076
1048
|
|
1077
|
-
export function
|
1078
|
-
const ret =
|
1079
|
-
return ret;
|
1049
|
+
export function __wbg_static_accessor_WINDOW_ae1c80c7eea8d64a() {
|
1050
|
+
const ret = typeof window === "undefined" ? null : window;
|
1051
|
+
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
1080
1052
|
}
|
1081
1053
|
|
1082
|
-
export function
|
1083
|
-
|
1084
|
-
try {
|
1085
|
-
result = getObject(arg0) instanceof Uint8Array;
|
1086
|
-
} catch (_) {
|
1087
|
-
result = false;
|
1088
|
-
}
|
1089
|
-
const ret = result;
|
1054
|
+
export function __wbg_status_317f53bc4c7638df(arg0) {
|
1055
|
+
const ret = getObject(arg0).status;
|
1090
1056
|
return ret;
|
1091
1057
|
}
|
1092
1058
|
|
1093
|
-
export function
|
1094
|
-
return handleError(function () {
|
1095
|
-
const ret =
|
1059
|
+
export function __wbg_stringify_f4f701bc34ceda61() {
|
1060
|
+
return handleError(function (arg0) {
|
1061
|
+
const ret = JSON.stringify(getObject(arg0));
|
1096
1062
|
return addHeapObject(ret);
|
1097
1063
|
}, arguments);
|
1098
1064
|
}
|
1099
1065
|
|
1100
|
-
export function
|
1101
|
-
|
1102
|
-
|
1103
|
-
}, arguments);
|
1104
|
-
}
|
1105
|
-
|
1106
|
-
export function __wbg_settype_623d2ee701e6310a(arg0, arg1, arg2) {
|
1107
|
-
getObject(arg0).type = getStringFromWasm0(arg1, arg2);
|
1066
|
+
export function __wbg_subarray_46adeb9b86949d12(arg0, arg1, arg2) {
|
1067
|
+
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
|
1068
|
+
return addHeapObject(ret);
|
1108
1069
|
}
|
1109
1070
|
|
1110
|
-
export function
|
1111
|
-
return handleError(function (arg0
|
1112
|
-
const ret =
|
1071
|
+
export function __wbg_text_dfc4cb7631d2eb34() {
|
1072
|
+
return handleError(function (arg0) {
|
1073
|
+
const ret = getObject(arg0).text();
|
1113
1074
|
return addHeapObject(ret);
|
1114
1075
|
}, arguments);
|
1115
1076
|
}
|
1116
1077
|
|
1117
|
-
export function
|
1118
|
-
|
1119
|
-
|
1120
|
-
}, arguments);
|
1078
|
+
export function __wbg_then_0438fad860fe38e1(arg0, arg1) {
|
1079
|
+
const ret = getObject(arg0).then(getObject(arg1));
|
1080
|
+
return addHeapObject(ret);
|
1121
1081
|
}
|
1122
1082
|
|
1123
|
-
export function
|
1124
|
-
|
1125
|
-
|
1126
|
-
getStringFromWasm0(arg1, arg2),
|
1127
|
-
getObject(arg3),
|
1128
|
-
getStringFromWasm0(arg4, arg5),
|
1129
|
-
);
|
1130
|
-
}, arguments);
|
1083
|
+
export function __wbg_then_0ffafeddf0e182a4(arg0, arg1, arg2) {
|
1084
|
+
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
|
1085
|
+
return addHeapObject(ret);
|
1131
1086
|
}
|
1132
1087
|
|
1133
|
-
export function
|
1134
|
-
const ret =
|
1088
|
+
export function __wbg_url_5327bc0a41a9b085(arg0, arg1) {
|
1089
|
+
const ret = getObject(arg1).url;
|
1090
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
1091
|
+
const len1 = WASM_VECTOR_LEN;
|
1092
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
1093
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
export function __wbg_value_4c32fd138a88eee2(arg0) {
|
1097
|
+
const ret = getObject(arg0).value;
|
1135
1098
|
return addHeapObject(ret);
|
1136
1099
|
}
|
1137
1100
|
|
1138
|
-
export function
|
1139
|
-
const ret = getObject(arg0).
|
1101
|
+
export function __wbg_versions_c71aa1626a93e0a1(arg0) {
|
1102
|
+
const ret = getObject(arg0).versions;
|
1140
1103
|
return addHeapObject(ret);
|
1141
1104
|
}
|
1142
1105
|
|
1143
|
-
export function
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1106
|
+
export function __wbg_warn_cb8be8bbf790a5d6(arg0, arg1, arg2, arg3) {
|
1107
|
+
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
export function __wbindgen_as_number(arg0) {
|
1111
|
+
const ret = +getObject(arg0);
|
1112
|
+
return ret;
|
1148
1113
|
}
|
1149
1114
|
|
1150
1115
|
export function __wbindgen_boolean_get(arg0) {
|
@@ -1153,19 +1118,19 @@ export function __wbindgen_boolean_get(arg0) {
|
|
1153
1118
|
return ret;
|
1154
1119
|
}
|
1155
1120
|
|
1156
|
-
export function
|
1157
|
-
const obj =
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1121
|
+
export function __wbindgen_cb_drop(arg0) {
|
1122
|
+
const obj = takeObject(arg0).original;
|
1123
|
+
if (obj.cnt-- == 1) {
|
1124
|
+
obj.a = 0;
|
1125
|
+
return true;
|
1126
|
+
}
|
1127
|
+
const ret = false;
|
1128
|
+
return ret;
|
1161
1129
|
}
|
1162
1130
|
|
1163
|
-
export function
|
1164
|
-
const ret =
|
1165
|
-
|
1166
|
-
const len1 = WASM_VECTOR_LEN;
|
1167
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
1168
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
1131
|
+
export function __wbindgen_closure_wrapper1832(arg0, arg1, arg2) {
|
1132
|
+
const ret = makeMutClosure(arg0, arg1, 491, __wbg_adapter_38);
|
1133
|
+
return addHeapObject(ret);
|
1169
1134
|
}
|
1170
1135
|
|
1171
1136
|
export function __wbindgen_debug_string(arg0, arg1) {
|
@@ -1176,47 +1141,79 @@ export function __wbindgen_debug_string(arg0, arg1) {
|
|
1176
1141
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
1177
1142
|
}
|
1178
1143
|
|
1179
|
-
export function
|
1180
|
-
|
1144
|
+
export function __wbindgen_error_new(arg0, arg1) {
|
1145
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
1146
|
+
return addHeapObject(ret);
|
1181
1147
|
}
|
1182
1148
|
|
1183
|
-
export function
|
1184
|
-
const ret = getObject(arg0)
|
1185
|
-
return
|
1149
|
+
export function __wbindgen_in(arg0, arg1) {
|
1150
|
+
const ret = getObject(arg0) in getObject(arg1);
|
1151
|
+
return ret;
|
1186
1152
|
}
|
1187
1153
|
|
1188
|
-
export function
|
1189
|
-
|
1154
|
+
export function __wbindgen_is_function(arg0) {
|
1155
|
+
const ret = typeof getObject(arg0) === "function";
|
1156
|
+
return ret;
|
1190
1157
|
}
|
1191
1158
|
|
1192
|
-
export function
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
}, arguments);
|
1159
|
+
export function __wbindgen_is_object(arg0) {
|
1160
|
+
const val = getObject(arg0);
|
1161
|
+
const ret = typeof val === "object" && val !== null;
|
1162
|
+
return ret;
|
1197
1163
|
}
|
1198
1164
|
|
1199
|
-
export function
|
1200
|
-
|
1165
|
+
export function __wbindgen_is_string(arg0) {
|
1166
|
+
const ret = typeof getObject(arg0) === "string";
|
1167
|
+
return ret;
|
1201
1168
|
}
|
1202
1169
|
|
1203
|
-
export function
|
1204
|
-
|
1170
|
+
export function __wbindgen_is_undefined(arg0) {
|
1171
|
+
const ret = getObject(arg0) === undefined;
|
1172
|
+
return ret;
|
1205
1173
|
}
|
1206
1174
|
|
1207
|
-
export function
|
1208
|
-
|
1175
|
+
export function __wbindgen_jsval_loose_eq(arg0, arg1) {
|
1176
|
+
const ret = getObject(arg0) == getObject(arg1);
|
1177
|
+
return ret;
|
1209
1178
|
}
|
1210
1179
|
|
1211
|
-
export function
|
1212
|
-
|
1180
|
+
export function __wbindgen_memory() {
|
1181
|
+
const ret = wasm.memory;
|
1182
|
+
return addHeapObject(ret);
|
1213
1183
|
}
|
1214
1184
|
|
1215
|
-
export function
|
1216
|
-
|
1185
|
+
export function __wbindgen_number_get(arg0, arg1) {
|
1186
|
+
const obj = getObject(arg1);
|
1187
|
+
const ret = typeof obj === "number" ? obj : undefined;
|
1188
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
1189
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
1217
1190
|
}
|
1218
1191
|
|
1219
|
-
export function
|
1220
|
-
const ret =
|
1192
|
+
export function __wbindgen_object_clone_ref(arg0) {
|
1193
|
+
const ret = getObject(arg0);
|
1221
1194
|
return addHeapObject(ret);
|
1222
1195
|
}
|
1196
|
+
|
1197
|
+
export function __wbindgen_object_drop_ref(arg0) {
|
1198
|
+
takeObject(arg0);
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
export function __wbindgen_string_get(arg0, arg1) {
|
1202
|
+
const obj = getObject(arg1);
|
1203
|
+
const ret = typeof obj === "string" ? obj : undefined;
|
1204
|
+
var ptr1 = isLikeNone(ret)
|
1205
|
+
? 0
|
1206
|
+
: passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
1207
|
+
var len1 = WASM_VECTOR_LEN;
|
1208
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
1209
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
export function __wbindgen_string_new(arg0, arg1) {
|
1213
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
1214
|
+
return addHeapObject(ret);
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
export function __wbindgen_throw(arg0, arg1) {
|
1218
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
1219
|
+
}
|