@learncard/didkit-plugin 1.5.31 → 1.5.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/didkit/didkit_wasm.d.ts +2 -2
- package/dist/didkit/didkit_wasm.js +237 -209
- package/dist/didkit/didkit_wasm_bg.wasm +0 -0
- package/dist/didkit/didkit_wasm_bg.wasm.d.ts +2 -2
- package/dist/didkit-plugin.cjs.development.js +233 -211
- package/dist/didkit-plugin.cjs.development.js.map +2 -2
- package/dist/didkit-plugin.cjs.production.min.js +2 -2
- package/dist/didkit-plugin.cjs.production.min.js.map +3 -3
- package/dist/didkit-plugin.esm.js +233 -211
- package/dist/didkit-plugin.esm.js.map +2 -2
- package/dist/didkit_wasm.d.ts +2 -2
- package/dist/didkit_wasm.js +237 -209
- package/dist/didkit_wasm_bg.wasm +0 -0
- package/dist/didkit_wasm_bg.wasm.d.ts +2 -2
- package/package.json +3 -3
@@ -3,7 +3,6 @@ var __name = (target, value) => __defProp(target, "name", { value, configurable:
|
|
3
3
|
|
4
4
|
// src/didkit/pkg/didkit_wasm.js
|
5
5
|
var wasm;
|
6
|
-
var WASM_VECTOR_LEN = 0;
|
7
6
|
var cachedUint8ArrayMemory0 = null;
|
8
7
|
function getUint8ArrayMemory0() {
|
9
8
|
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
@@ -12,6 +11,32 @@ function getUint8ArrayMemory0() {
|
|
12
11
|
return cachedUint8ArrayMemory0;
|
13
12
|
}
|
14
13
|
__name(getUint8ArrayMemory0, "getUint8ArrayMemory0");
|
14
|
+
var cachedTextDecoder = typeof TextDecoder !== "undefined" ? new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }) : { decode: () => {
|
15
|
+
throw Error("TextDecoder not available");
|
16
|
+
} };
|
17
|
+
if (typeof TextDecoder !== "undefined") {
|
18
|
+
cachedTextDecoder.decode();
|
19
|
+
}
|
20
|
+
var MAX_SAFARI_DECODE_BYTES = 2146435072;
|
21
|
+
var numBytesDecoded = 0;
|
22
|
+
function decodeText(ptr, len) {
|
23
|
+
numBytesDecoded += len;
|
24
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
25
|
+
cachedTextDecoder = typeof TextDecoder !== "undefined" ? new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }) : { decode: () => {
|
26
|
+
throw Error("TextDecoder not available");
|
27
|
+
} };
|
28
|
+
cachedTextDecoder.decode();
|
29
|
+
numBytesDecoded = len;
|
30
|
+
}
|
31
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
32
|
+
}
|
33
|
+
__name(decodeText, "decodeText");
|
34
|
+
function getStringFromWasm0(ptr, len) {
|
35
|
+
ptr = ptr >>> 0;
|
36
|
+
return decodeText(ptr, len);
|
37
|
+
}
|
38
|
+
__name(getStringFromWasm0, "getStringFromWasm0");
|
39
|
+
var WASM_VECTOR_LEN = 0;
|
15
40
|
var cachedTextEncoder = typeof TextEncoder !== "undefined" ? new TextEncoder("utf-8") : { encode: () => {
|
16
41
|
throw Error("TextEncoder not available");
|
17
42
|
} };
|
@@ -65,17 +90,6 @@ function getDataViewMemory0() {
|
|
65
90
|
return cachedDataViewMemory0;
|
66
91
|
}
|
67
92
|
__name(getDataViewMemory0, "getDataViewMemory0");
|
68
|
-
var cachedTextDecoder = typeof TextDecoder !== "undefined" ? new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }) : { decode: () => {
|
69
|
-
throw Error("TextDecoder not available");
|
70
|
-
} };
|
71
|
-
if (typeof TextDecoder !== "undefined") {
|
72
|
-
cachedTextDecoder.decode();
|
73
|
-
}
|
74
|
-
function getStringFromWasm0(ptr, len) {
|
75
|
-
ptr = ptr >>> 0;
|
76
|
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
77
|
-
}
|
78
|
-
__name(getStringFromWasm0, "getStringFromWasm0");
|
79
93
|
function addToExternrefTable0(obj) {
|
80
94
|
const idx = wasm.__externref_table_alloc();
|
81
95
|
wasm.__wbindgen_export_4.set(idx, obj);
|
@@ -100,33 +114,6 @@ function isLikeNone(x) {
|
|
100
114
|
return x === void 0 || x === null;
|
101
115
|
}
|
102
116
|
__name(isLikeNone, "isLikeNone");
|
103
|
-
var CLOSURE_DTORS = typeof FinalizationRegistry === "undefined" ? { register: () => {
|
104
|
-
}, unregister: () => {
|
105
|
-
} } : new FinalizationRegistry((state) => {
|
106
|
-
wasm.__wbindgen_export_5.get(state.dtor)(state.a, state.b);
|
107
|
-
});
|
108
|
-
function makeMutClosure(arg0, arg1, dtor, f) {
|
109
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
110
|
-
const real = /* @__PURE__ */ __name((...args) => {
|
111
|
-
state.cnt++;
|
112
|
-
const a = state.a;
|
113
|
-
state.a = 0;
|
114
|
-
try {
|
115
|
-
return f(a, state.b, ...args);
|
116
|
-
} finally {
|
117
|
-
if (--state.cnt === 0) {
|
118
|
-
wasm.__wbindgen_export_5.get(state.dtor)(a, state.b);
|
119
|
-
CLOSURE_DTORS.unregister(state);
|
120
|
-
} else {
|
121
|
-
state.a = a;
|
122
|
-
}
|
123
|
-
}
|
124
|
-
}, "real");
|
125
|
-
real.original = state;
|
126
|
-
CLOSURE_DTORS.register(real, state, state);
|
127
|
-
return real;
|
128
|
-
}
|
129
|
-
__name(makeMutClosure, "makeMutClosure");
|
130
117
|
function debugString(val) {
|
131
118
|
const type = typeof val;
|
132
119
|
if (type == "number" || type == "boolean" || val == null) {
|
@@ -184,6 +171,35 @@ ${val.stack}`;
|
|
184
171
|
return className;
|
185
172
|
}
|
186
173
|
__name(debugString, "debugString");
|
174
|
+
var CLOSURE_DTORS = typeof FinalizationRegistry === "undefined" ? { register: () => {
|
175
|
+
}, unregister: () => {
|
176
|
+
} } : new FinalizationRegistry(
|
177
|
+
(state) => {
|
178
|
+
wasm.__wbindgen_export_5.get(state.dtor)(state.a, state.b);
|
179
|
+
}
|
180
|
+
);
|
181
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
182
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
183
|
+
const real = /* @__PURE__ */ __name((...args) => {
|
184
|
+
state.cnt++;
|
185
|
+
const a = state.a;
|
186
|
+
state.a = 0;
|
187
|
+
try {
|
188
|
+
return f(a, state.b, ...args);
|
189
|
+
} finally {
|
190
|
+
if (--state.cnt === 0) {
|
191
|
+
wasm.__wbindgen_export_5.get(state.dtor)(a, state.b);
|
192
|
+
CLOSURE_DTORS.unregister(state);
|
193
|
+
} else {
|
194
|
+
state.a = a;
|
195
|
+
}
|
196
|
+
}
|
197
|
+
}, "real");
|
198
|
+
real.original = state;
|
199
|
+
CLOSURE_DTORS.register(real, state, state);
|
200
|
+
return real;
|
201
|
+
}
|
202
|
+
__name(makeMutClosure, "makeMutClosure");
|
187
203
|
function clearCache() {
|
188
204
|
const ret = wasm.clearCache();
|
189
205
|
return ret;
|
@@ -403,23 +419,25 @@ function contextLoader(url) {
|
|
403
419
|
return ret;
|
404
420
|
}
|
405
421
|
__name(contextLoader, "contextLoader");
|
406
|
-
function
|
407
|
-
wasm.
|
422
|
+
function __wbg_adapter_10(arg0, arg1, arg2) {
|
423
|
+
wasm.closure4202_externref_shim(arg0, arg1, arg2);
|
408
424
|
}
|
409
|
-
__name(
|
410
|
-
function
|
411
|
-
wasm.
|
425
|
+
__name(__wbg_adapter_10, "__wbg_adapter_10");
|
426
|
+
function __wbg_adapter_188(arg0, arg1, arg2, arg3) {
|
427
|
+
wasm.closure4602_externref_shim(arg0, arg1, arg2, arg3);
|
412
428
|
}
|
413
|
-
__name(
|
429
|
+
__name(__wbg_adapter_188, "__wbg_adapter_188");
|
414
430
|
var __wbindgen_enum_RequestCredentials = ["omit", "same-origin", "include"];
|
415
431
|
var __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate"];
|
432
|
+
var EXPECTED_RESPONSE_TYPES = /* @__PURE__ */ new Set(["basic", "cors", "default"]);
|
416
433
|
async function __wbg_load(module2, imports) {
|
417
434
|
if (typeof Response === "function" && module2 instanceof Response) {
|
418
435
|
if (typeof WebAssembly.instantiateStreaming === "function") {
|
419
436
|
try {
|
420
437
|
return await WebAssembly.instantiateStreaming(module2, imports);
|
421
438
|
} catch (e) {
|
422
|
-
|
439
|
+
const validResponse = module2.ok && EXPECTED_RESPONSE_TYPES.has(module2.type);
|
440
|
+
if (validResponse && module2.headers.get("Content-Type") !== "application/wasm") {
|
423
441
|
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
424
442
|
} else {
|
425
443
|
throw e;
|
@@ -441,6 +459,10 @@ __name(__wbg_load, "__wbg_load");
|
|
441
459
|
function __wbg_get_imports() {
|
442
460
|
const imports = {};
|
443
461
|
imports.wbg = {};
|
462
|
+
imports.wbg.__wbg_Error_1f3748b298f99708 = function(arg0, arg1) {
|
463
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
464
|
+
return ret;
|
465
|
+
};
|
444
466
|
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
445
467
|
const ret = String(arg1);
|
446
468
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
@@ -448,31 +470,27 @@ function __wbg_get_imports() {
|
|
448
470
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
449
471
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
450
472
|
};
|
451
|
-
imports.wbg.
|
473
|
+
imports.wbg.__wbg_abort_6665281623826052 = function(arg0) {
|
452
474
|
arg0.abort();
|
453
475
|
};
|
454
|
-
imports.wbg.
|
476
|
+
imports.wbg.__wbg_append_3e86b0cd6215edd8 = function() {
|
455
477
|
return handleError(function(arg0, arg1, arg2, arg3, arg4) {
|
456
478
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
457
479
|
}, arguments);
|
458
480
|
};
|
459
|
-
imports.wbg.
|
481
|
+
imports.wbg.__wbg_arrayBuffer_55e4a430671abfd8 = function() {
|
460
482
|
return handleError(function(arg0) {
|
461
483
|
const ret = arg0.arrayBuffer();
|
462
484
|
return ret;
|
463
485
|
}, arguments);
|
464
486
|
};
|
465
|
-
imports.wbg.
|
466
|
-
const ret = arg0.buffer;
|
467
|
-
return ret;
|
468
|
-
};
|
469
|
-
imports.wbg.__wbg_call_672a4d21634d4a24 = function() {
|
487
|
+
imports.wbg.__wbg_call_2f8d426a20a307fe = function() {
|
470
488
|
return handleError(function(arg0, arg1) {
|
471
489
|
const ret = arg0.call(arg1);
|
472
490
|
return ret;
|
473
491
|
}, arguments);
|
474
492
|
};
|
475
|
-
imports.wbg.
|
493
|
+
imports.wbg.__wbg_call_f53f0647ceb9c567 = function() {
|
476
494
|
return handleError(function(arg0, arg1, arg2) {
|
477
495
|
const ret = arg0.call(arg1, arg2);
|
478
496
|
return ret;
|
@@ -482,19 +500,19 @@ function __wbg_get_imports() {
|
|
482
500
|
const ret = arg0.crypto;
|
483
501
|
return ret;
|
484
502
|
};
|
485
|
-
imports.wbg.
|
503
|
+
imports.wbg.__wbg_crypto_574e78ad8b13b65f = function(arg0) {
|
486
504
|
const ret = arg0.crypto;
|
487
505
|
return ret;
|
488
506
|
};
|
489
|
-
imports.wbg.
|
507
|
+
imports.wbg.__wbg_done_4a7743b6f942c9f3 = function(arg0) {
|
490
508
|
const ret = arg0.done;
|
491
509
|
return ret;
|
492
510
|
};
|
493
|
-
imports.wbg.
|
511
|
+
imports.wbg.__wbg_entries_17f7acbc2d691c0d = function(arg0) {
|
494
512
|
const ret = Object.entries(arg0);
|
495
513
|
return ret;
|
496
514
|
};
|
497
|
-
imports.wbg.
|
515
|
+
imports.wbg.__wbg_fetch_9885d2e26ad251bb = function(arg0, arg1) {
|
498
516
|
const ret = arg0.fetch(arg1);
|
499
517
|
return ret;
|
500
518
|
};
|
@@ -502,47 +520,52 @@ function __wbg_get_imports() {
|
|
502
520
|
const ret = fetch(arg0);
|
503
521
|
return ret;
|
504
522
|
};
|
505
|
-
imports.wbg.
|
523
|
+
imports.wbg.__wbg_from_237b1ad767238d8b = function(arg0) {
|
506
524
|
const ret = Array.from(arg0);
|
507
525
|
return ret;
|
508
526
|
};
|
509
527
|
imports.wbg.__wbg_getRandomValues_371e7ade8bd92088 = function(arg0, arg1) {
|
510
528
|
arg0.getRandomValues(arg1);
|
511
529
|
};
|
530
|
+
imports.wbg.__wbg_getRandomValues_3c9c0d586e575a16 = function() {
|
531
|
+
return handleError(function(arg0, arg1) {
|
532
|
+
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
533
|
+
}, arguments);
|
534
|
+
};
|
512
535
|
imports.wbg.__wbg_getRandomValues_7dfe5bd1b67c9ca1 = function(arg0) {
|
513
536
|
const ret = arg0.getRandomValues;
|
514
537
|
return ret;
|
515
538
|
};
|
516
|
-
imports.wbg.
|
539
|
+
imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() {
|
517
540
|
return handleError(function(arg0, arg1) {
|
518
541
|
arg0.getRandomValues(arg1);
|
519
542
|
}, arguments);
|
520
543
|
};
|
521
|
-
imports.wbg.
|
544
|
+
imports.wbg.__wbg_getTime_5b1dd03bb6d4b784 = function(arg0) {
|
522
545
|
const ret = arg0.getTime();
|
523
546
|
return ret;
|
524
547
|
};
|
525
|
-
imports.wbg.
|
548
|
+
imports.wbg.__wbg_get_27b4bcbec57323ca = function() {
|
526
549
|
return handleError(function(arg0, arg1) {
|
527
550
|
const ret = Reflect.get(arg0, arg1);
|
528
551
|
return ret;
|
529
552
|
}, arguments);
|
530
553
|
};
|
531
|
-
imports.wbg.
|
554
|
+
imports.wbg.__wbg_get_59c6316d15f9f1d0 = function(arg0, arg1) {
|
532
555
|
const ret = arg0[arg1 >>> 0];
|
533
556
|
return ret;
|
534
557
|
};
|
535
|
-
imports.wbg.
|
558
|
+
imports.wbg.__wbg_has_85abdd8aeb8edebf = function() {
|
536
559
|
return handleError(function(arg0, arg1) {
|
537
560
|
const ret = Reflect.has(arg0, arg1);
|
538
561
|
return ret;
|
539
562
|
}, arguments);
|
540
563
|
};
|
541
|
-
imports.wbg.
|
564
|
+
imports.wbg.__wbg_headers_177bc880a5823968 = function(arg0) {
|
542
565
|
const ret = arg0.headers;
|
543
566
|
return ret;
|
544
567
|
};
|
545
|
-
imports.wbg.
|
568
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_59339a3a6f0c10ea = function(arg0) {
|
546
569
|
let result;
|
547
570
|
try {
|
548
571
|
result = arg0 instanceof ArrayBuffer;
|
@@ -552,7 +575,7 @@ function __wbg_get_imports() {
|
|
552
575
|
const ret = result;
|
553
576
|
return ret;
|
554
577
|
};
|
555
|
-
imports.wbg.
|
578
|
+
imports.wbg.__wbg_instanceof_Map_dd89a82d76d1b25f = function(arg0) {
|
556
579
|
let result;
|
557
580
|
try {
|
558
581
|
result = arg0 instanceof Map;
|
@@ -562,7 +585,7 @@ function __wbg_get_imports() {
|
|
562
585
|
const ret = result;
|
563
586
|
return ret;
|
564
587
|
};
|
565
|
-
imports.wbg.
|
588
|
+
imports.wbg.__wbg_instanceof_Response_0ab386c6818f788a = function(arg0) {
|
566
589
|
let result;
|
567
590
|
try {
|
568
591
|
result = arg0 instanceof Response;
|
@@ -572,7 +595,7 @@ function __wbg_get_imports() {
|
|
572
595
|
const ret = result;
|
573
596
|
return ret;
|
574
597
|
};
|
575
|
-
imports.wbg.
|
598
|
+
imports.wbg.__wbg_instanceof_Uint8Array_91f3c5adee7e6672 = function(arg0) {
|
576
599
|
let result;
|
577
600
|
try {
|
578
601
|
result = arg0 instanceof Uint8Array;
|
@@ -582,31 +605,31 @@ function __wbg_get_imports() {
|
|
582
605
|
const ret = result;
|
583
606
|
return ret;
|
584
607
|
};
|
585
|
-
imports.wbg.
|
608
|
+
imports.wbg.__wbg_isArray_bc2498eba6fcb71f = function(arg0) {
|
586
609
|
const ret = Array.isArray(arg0);
|
587
610
|
return ret;
|
588
611
|
};
|
589
|
-
imports.wbg.
|
612
|
+
imports.wbg.__wbg_isSafeInteger_6091d6e3ee1b65fd = function(arg0) {
|
590
613
|
const ret = Number.isSafeInteger(arg0);
|
591
614
|
return ret;
|
592
615
|
};
|
593
|
-
imports.wbg.
|
616
|
+
imports.wbg.__wbg_iterator_96378c3c9a17347c = function() {
|
594
617
|
const ret = Symbol.iterator;
|
595
618
|
return ret;
|
596
619
|
};
|
597
|
-
imports.wbg.
|
620
|
+
imports.wbg.__wbg_keys_7eff209f4f3c9f17 = function(arg0) {
|
598
621
|
const ret = Object.keys(arg0);
|
599
622
|
return ret;
|
600
623
|
};
|
601
|
-
imports.wbg.
|
624
|
+
imports.wbg.__wbg_length_246fa1f85a0dea5b = function(arg0) {
|
602
625
|
const ret = arg0.length;
|
603
626
|
return ret;
|
604
627
|
};
|
605
|
-
imports.wbg.
|
628
|
+
imports.wbg.__wbg_length_904c0910ed998bf3 = function(arg0) {
|
606
629
|
const ret = arg0.length;
|
607
630
|
return ret;
|
608
631
|
};
|
609
|
-
imports.wbg.
|
632
|
+
imports.wbg.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
610
633
|
const ret = arg0.msCrypto;
|
611
634
|
return ret;
|
612
635
|
};
|
@@ -614,24 +637,42 @@ function __wbg_get_imports() {
|
|
614
637
|
const ret = arg0.msCrypto;
|
615
638
|
return ret;
|
616
639
|
};
|
617
|
-
imports.wbg.
|
640
|
+
imports.wbg.__wbg_new0_85cc856927102294 = function() {
|
618
641
|
const ret = new Date();
|
619
642
|
return ret;
|
620
643
|
};
|
621
|
-
imports.wbg.
|
644
|
+
imports.wbg.__wbg_new_12588505388d0897 = function() {
|
622
645
|
return handleError(function() {
|
623
646
|
const ret = new Headers();
|
624
647
|
return ret;
|
625
648
|
}, arguments);
|
626
649
|
};
|
627
|
-
imports.wbg.
|
650
|
+
imports.wbg.__wbg_new_1930cbb8d9ffc31b = function() {
|
651
|
+
const ret = new Object();
|
652
|
+
return ret;
|
653
|
+
};
|
654
|
+
imports.wbg.__wbg_new_56407f99198feff7 = function() {
|
655
|
+
const ret = /* @__PURE__ */ new Map();
|
656
|
+
return ret;
|
657
|
+
};
|
658
|
+
imports.wbg.__wbg_new_6a8b180049d9484e = function() {
|
659
|
+
return handleError(function() {
|
660
|
+
const ret = new AbortController();
|
661
|
+
return ret;
|
662
|
+
}, arguments);
|
663
|
+
};
|
664
|
+
imports.wbg.__wbg_new_9190433fb67ed635 = function(arg0) {
|
665
|
+
const ret = new Uint8Array(arg0);
|
666
|
+
return ret;
|
667
|
+
};
|
668
|
+
imports.wbg.__wbg_new_d5e3800b120e37e1 = function(arg0, arg1) {
|
628
669
|
try {
|
629
670
|
var state0 = { a: arg0, b: arg1 };
|
630
671
|
var cb0 = /* @__PURE__ */ __name((arg02, arg12) => {
|
631
672
|
const a = state0.a;
|
632
673
|
state0.a = 0;
|
633
674
|
try {
|
634
|
-
return
|
675
|
+
return __wbg_adapter_188(a, state0.b, arg02, arg12);
|
635
676
|
} finally {
|
636
677
|
state0.a = a;
|
637
678
|
}
|
@@ -642,83 +683,68 @@ function __wbg_get_imports() {
|
|
642
683
|
state0.a = state0.b = 0;
|
643
684
|
}
|
644
685
|
};
|
645
|
-
imports.wbg.
|
646
|
-
const ret = new Object();
|
647
|
-
return ret;
|
648
|
-
};
|
649
|
-
imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
|
650
|
-
const ret = /* @__PURE__ */ new Map();
|
651
|
-
return ret;
|
652
|
-
};
|
653
|
-
imports.wbg.__wbg_new_78feb108b6472713 = function() {
|
686
|
+
imports.wbg.__wbg_new_e969dc3f68d25093 = function() {
|
654
687
|
const ret = new Array();
|
655
688
|
return ret;
|
656
689
|
};
|
657
|
-
imports.wbg.
|
658
|
-
const ret = new Uint8Array(arg0);
|
690
|
+
imports.wbg.__wbg_newfromslice_d0d56929c6d9c842 = function(arg0, arg1) {
|
691
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
659
692
|
return ret;
|
660
693
|
};
|
661
|
-
imports.wbg.
|
662
|
-
return handleError(function() {
|
663
|
-
const ret = new AbortController();
|
664
|
-
return ret;
|
665
|
-
}, arguments);
|
666
|
-
};
|
667
|
-
imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
694
|
+
imports.wbg.__wbg_newnoargs_a81330f6e05d8aca = function(arg0, arg1) {
|
668
695
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
669
696
|
return ret;
|
670
697
|
};
|
671
|
-
imports.wbg.
|
672
|
-
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
673
|
-
return ret;
|
674
|
-
};
|
675
|
-
imports.wbg.__wbg_newwithlength_a381634e90c276d4 = function(arg0) {
|
698
|
+
imports.wbg.__wbg_newwithlength_ed0ee6c1edca86fc = function(arg0) {
|
676
699
|
const ret = new Uint8Array(arg0 >>> 0);
|
677
700
|
return ret;
|
678
701
|
};
|
679
|
-
imports.wbg.
|
702
|
+
imports.wbg.__wbg_newwithstrandinit_e8e22e9851f3c2fe = function() {
|
680
703
|
return handleError(function(arg0, arg1, arg2) {
|
681
704
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
682
705
|
return ret;
|
683
706
|
}, arguments);
|
684
707
|
};
|
685
|
-
imports.wbg.
|
686
|
-
const ret = arg0.next;
|
687
|
-
return ret;
|
688
|
-
};
|
689
|
-
imports.wbg.__wbg_next_6574e1a8a62d1055 = function() {
|
708
|
+
imports.wbg.__wbg_next_2e6b37020ac5fe58 = function() {
|
690
709
|
return handleError(function(arg0) {
|
691
710
|
const ret = arg0.next();
|
692
711
|
return ret;
|
693
712
|
}, arguments);
|
694
713
|
};
|
695
|
-
imports.wbg.
|
714
|
+
imports.wbg.__wbg_next_3de8f2669431a3ff = function(arg0) {
|
715
|
+
const ret = arg0.next;
|
716
|
+
return ret;
|
717
|
+
};
|
718
|
+
imports.wbg.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
696
719
|
const ret = arg0.node;
|
697
720
|
return ret;
|
698
721
|
};
|
699
|
-
imports.wbg.
|
722
|
+
imports.wbg.__wbg_now_1f875e5cd673bc3c = function(arg0) {
|
700
723
|
const ret = arg0.now();
|
701
724
|
return ret;
|
702
725
|
};
|
703
|
-
imports.wbg.
|
726
|
+
imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
704
727
|
const ret = arg0.process;
|
705
728
|
return ret;
|
706
729
|
};
|
707
|
-
imports.wbg.
|
730
|
+
imports.wbg.__wbg_prototypesetcall_c5f74efd31aea86b = function(arg0, arg1, arg2) {
|
731
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
732
|
+
};
|
733
|
+
imports.wbg.__wbg_push_cd3ac7d5b094565d = function(arg0, arg1) {
|
708
734
|
const ret = arg0.push(arg1);
|
709
735
|
return ret;
|
710
736
|
};
|
711
|
-
imports.wbg.
|
712
|
-
queueMicrotask(arg0);
|
713
|
-
};
|
714
|
-
imports.wbg.__wbg_queueMicrotask_d3219def82552485 = function(arg0) {
|
737
|
+
imports.wbg.__wbg_queueMicrotask_bcc6e26d899696db = function(arg0) {
|
715
738
|
const ret = arg0.queueMicrotask;
|
716
739
|
return ret;
|
717
740
|
};
|
741
|
+
imports.wbg.__wbg_queueMicrotask_f24a794d09c42640 = function(arg0) {
|
742
|
+
queueMicrotask(arg0);
|
743
|
+
};
|
718
744
|
imports.wbg.__wbg_randomFillSync_994ac6d9ade7a695 = function(arg0, arg1, arg2) {
|
719
745
|
arg0.randomFillSync(getArrayU8FromWasm0(arg1, arg2));
|
720
746
|
};
|
721
|
-
imports.wbg.
|
747
|
+
imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() {
|
722
748
|
return handleError(function(arg0, arg1) {
|
723
749
|
arg0.randomFillSync(arg1);
|
724
750
|
}, arguments);
|
@@ -727,13 +753,13 @@ function __wbg_get_imports() {
|
|
727
753
|
const ret = arg0.require(getStringFromWasm0(arg1, arg2));
|
728
754
|
return ret;
|
729
755
|
};
|
730
|
-
imports.wbg.
|
756
|
+
imports.wbg.__wbg_require_60cc747a6bc5215a = function() {
|
731
757
|
return handleError(function() {
|
732
758
|
const ret = module.require;
|
733
759
|
return ret;
|
734
760
|
}, arguments);
|
735
761
|
};
|
736
|
-
imports.wbg.
|
762
|
+
imports.wbg.__wbg_resolve_5775c0ef9222f556 = function(arg0) {
|
737
763
|
const ret = Promise.resolve(arg0);
|
738
764
|
return ret;
|
739
765
|
};
|
@@ -743,52 +769,52 @@ function __wbg_get_imports() {
|
|
743
769
|
return ret;
|
744
770
|
}, arguments);
|
745
771
|
};
|
746
|
-
imports.wbg.
|
747
|
-
arg0
|
748
|
-
};
|
749
|
-
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
750
|
-
arg0[arg1] = arg2;
|
751
|
-
};
|
752
|
-
imports.wbg.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) {
|
753
|
-
arg0.set(arg1, arg2 >>> 0);
|
772
|
+
imports.wbg.__wbg_set_1d5fe1e3f51a48d8 = function(arg0, arg1, arg2) {
|
773
|
+
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
754
774
|
};
|
755
|
-
imports.wbg.
|
775
|
+
imports.wbg.__wbg_set_31197016f65a6a19 = function(arg0, arg1, arg2) {
|
756
776
|
const ret = arg0.set(arg1, arg2);
|
757
777
|
return ret;
|
758
778
|
};
|
759
|
-
imports.wbg.
|
779
|
+
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
780
|
+
arg0[arg1] = arg2;
|
781
|
+
};
|
782
|
+
imports.wbg.__wbg_set_b33e7a98099eed58 = function() {
|
760
783
|
return handleError(function(arg0, arg1, arg2) {
|
761
784
|
const ret = Reflect.set(arg0, arg1, arg2);
|
762
785
|
return ret;
|
763
786
|
}, arguments);
|
764
787
|
};
|
765
|
-
imports.wbg.
|
788
|
+
imports.wbg.__wbg_set_d636a0463acf1dbc = function(arg0, arg1, arg2) {
|
789
|
+
arg0[arg1 >>> 0] = arg2;
|
790
|
+
};
|
791
|
+
imports.wbg.__wbg_setbody_e324371c31597f2a = function(arg0, arg1) {
|
766
792
|
arg0.body = arg1;
|
767
793
|
};
|
768
|
-
imports.wbg.
|
794
|
+
imports.wbg.__wbg_setcredentials_55a9317ed2777533 = function(arg0, arg1) {
|
769
795
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
770
796
|
};
|
771
|
-
imports.wbg.
|
797
|
+
imports.wbg.__wbg_setheaders_ac0b1e4890a949cd = function(arg0, arg1) {
|
772
798
|
arg0.headers = arg1;
|
773
799
|
};
|
774
|
-
imports.wbg.
|
800
|
+
imports.wbg.__wbg_setmethod_9ce6e95af1ae0eaf = function(arg0, arg1, arg2) {
|
775
801
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
776
802
|
};
|
777
|
-
imports.wbg.
|
803
|
+
imports.wbg.__wbg_setmode_b89d1784e7e7f118 = function(arg0, arg1) {
|
778
804
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
779
805
|
};
|
780
|
-
imports.wbg.
|
806
|
+
imports.wbg.__wbg_setsignal_e663c6d962763cd5 = function(arg0, arg1) {
|
781
807
|
arg0.signal = arg1;
|
782
808
|
};
|
783
|
-
imports.wbg.
|
809
|
+
imports.wbg.__wbg_signal_bdb003fe19e53a13 = function(arg0) {
|
784
810
|
const ret = arg0.signal;
|
785
811
|
return ret;
|
786
812
|
};
|
787
|
-
imports.wbg.
|
813
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_1f13249cc3acc96d = function() {
|
788
814
|
const ret = typeof global === "undefined" ? null : global;
|
789
815
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
790
816
|
};
|
791
|
-
imports.wbg.
|
817
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_df7ae94b1e0ed6a3 = function() {
|
792
818
|
const ret = typeof globalThis === "undefined" ? null : globalThis;
|
793
819
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
794
820
|
};
|
@@ -796,75 +822,63 @@ function __wbg_get_imports() {
|
|
796
822
|
const ret = module;
|
797
823
|
return ret;
|
798
824
|
};
|
799
|
-
imports.wbg.
|
825
|
+
imports.wbg.__wbg_static_accessor_SELF_6265471db3b3c228 = function() {
|
800
826
|
const ret = typeof self === "undefined" ? null : self;
|
801
827
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
802
828
|
};
|
803
|
-
imports.wbg.
|
829
|
+
imports.wbg.__wbg_static_accessor_WINDOW_16fb482f8ec52863 = function() {
|
804
830
|
const ret = typeof window === "undefined" ? null : window;
|
805
831
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
806
832
|
};
|
807
|
-
imports.wbg.
|
833
|
+
imports.wbg.__wbg_status_31874648c8651949 = function(arg0) {
|
808
834
|
const ret = arg0.status;
|
809
835
|
return ret;
|
810
836
|
};
|
811
|
-
imports.wbg.
|
837
|
+
imports.wbg.__wbg_stringify_1f41b6198e0932e0 = function() {
|
812
838
|
return handleError(function(arg0) {
|
813
839
|
const ret = JSON.stringify(arg0);
|
814
840
|
return ret;
|
815
841
|
}, arguments);
|
816
842
|
};
|
817
|
-
imports.wbg.
|
843
|
+
imports.wbg.__wbg_subarray_a219824899e59712 = function(arg0, arg1, arg2) {
|
818
844
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
819
845
|
return ret;
|
820
846
|
};
|
821
|
-
imports.wbg.
|
822
|
-
const ret = arg0.then(arg1);
|
847
|
+
imports.wbg.__wbg_then_8d2fcccde5380a03 = function(arg0, arg1, arg2) {
|
848
|
+
const ret = arg0.then(arg1, arg2);
|
823
849
|
return ret;
|
824
850
|
};
|
825
|
-
imports.wbg.
|
826
|
-
const ret = arg0.then(arg1
|
851
|
+
imports.wbg.__wbg_then_9cc266be2bf537b6 = function(arg0, arg1) {
|
852
|
+
const ret = arg0.then(arg1);
|
827
853
|
return ret;
|
828
854
|
};
|
829
|
-
imports.wbg.
|
855
|
+
imports.wbg.__wbg_url_d5273b9e10503471 = function(arg0, arg1) {
|
830
856
|
const ret = arg1.url;
|
831
857
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
832
858
|
const len1 = WASM_VECTOR_LEN;
|
833
859
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
834
860
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
835
861
|
};
|
836
|
-
imports.wbg.
|
862
|
+
imports.wbg.__wbg_value_09d0b4eaab48b91d = function(arg0) {
|
837
863
|
const ret = arg0.value;
|
838
864
|
return ret;
|
839
865
|
};
|
840
|
-
imports.wbg.
|
866
|
+
imports.wbg.__wbg_versions_c01dfd4722a88165 = function(arg0) {
|
841
867
|
const ret = arg0.versions;
|
842
868
|
return ret;
|
843
869
|
};
|
844
|
-
imports.wbg.
|
845
|
-
const ret = arg0 << BigInt(64) | BigInt.asUintN(64, arg1);
|
846
|
-
return ret;
|
847
|
-
};
|
848
|
-
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {
|
849
|
-
const ret = arg0;
|
850
|
-
return ret;
|
851
|
-
};
|
852
|
-
imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
|
853
|
-
const ret = BigInt.asUintN(64, arg0);
|
854
|
-
return ret;
|
855
|
-
};
|
856
|
-
imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
|
870
|
+
imports.wbg.__wbg_wbindgenbigintgetasi64_7637cb1a7fb9a81e = function(arg0, arg1) {
|
857
871
|
const v = arg1;
|
858
872
|
const ret = typeof v === "bigint" ? v : void 0;
|
859
873
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
860
874
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
861
875
|
};
|
862
|
-
imports.wbg.
|
876
|
+
imports.wbg.__wbg_wbindgenbooleanget_59f830b1a70d2530 = function(arg0) {
|
863
877
|
const v = arg0;
|
864
|
-
const ret = typeof v === "boolean" ? v
|
865
|
-
return ret;
|
878
|
+
const ret = typeof v === "boolean" ? v : void 0;
|
879
|
+
return isLikeNone(ret) ? 16777215 : ret ? 1 : 0;
|
866
880
|
};
|
867
|
-
imports.wbg.
|
881
|
+
imports.wbg.__wbg_wbindgencbdrop_a85ed476c6a370b9 = function(arg0) {
|
868
882
|
const obj = arg0.original;
|
869
883
|
if (obj.cnt-- == 1) {
|
870
884
|
obj.a = 0;
|
@@ -873,83 +887,57 @@ function __wbg_get_imports() {
|
|
873
887
|
const ret = false;
|
874
888
|
return ret;
|
875
889
|
};
|
876
|
-
imports.wbg.
|
877
|
-
const ret = makeMutClosure(arg0, arg1, 4041, __wbg_adapter_54);
|
878
|
-
return ret;
|
879
|
-
};
|
880
|
-
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
890
|
+
imports.wbg.__wbg_wbindgendebugstring_bb652b1bc2061b6d = function(arg0, arg1) {
|
881
891
|
const ret = debugString(arg1);
|
882
892
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
883
893
|
const len1 = WASM_VECTOR_LEN;
|
884
894
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
885
895
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
886
896
|
};
|
887
|
-
imports.wbg.
|
888
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
889
|
-
return ret;
|
890
|
-
};
|
891
|
-
imports.wbg.__wbindgen_in = function(arg0, arg1) {
|
897
|
+
imports.wbg.__wbg_wbindgenin_192b210aa1c401e9 = function(arg0, arg1) {
|
892
898
|
const ret = arg0 in arg1;
|
893
899
|
return ret;
|
894
900
|
};
|
895
|
-
imports.wbg.
|
896
|
-
const table = wasm.__wbindgen_export_4;
|
897
|
-
const offset = table.grow(4);
|
898
|
-
table.set(0, void 0);
|
899
|
-
table.set(offset + 0, void 0);
|
900
|
-
table.set(offset + 1, null);
|
901
|
-
table.set(offset + 2, true);
|
902
|
-
table.set(offset + 3, false);
|
903
|
-
;
|
904
|
-
};
|
905
|
-
imports.wbg.__wbindgen_is_bigint = function(arg0) {
|
901
|
+
imports.wbg.__wbg_wbindgenisbigint_7d76a1ca6454e439 = function(arg0) {
|
906
902
|
const ret = typeof arg0 === "bigint";
|
907
903
|
return ret;
|
908
904
|
};
|
909
|
-
imports.wbg.
|
905
|
+
imports.wbg.__wbg_wbindgenisfunction_ea72b9d66a0e1705 = function(arg0) {
|
910
906
|
const ret = typeof arg0 === "function";
|
911
907
|
return ret;
|
912
908
|
};
|
913
|
-
imports.wbg.
|
909
|
+
imports.wbg.__wbg_wbindgenisnull_e1388bbe88158c3f = function(arg0) {
|
914
910
|
const ret = arg0 === null;
|
915
911
|
return ret;
|
916
912
|
};
|
917
|
-
imports.wbg.
|
913
|
+
imports.wbg.__wbg_wbindgenisobject_dfe064a121d87553 = function(arg0) {
|
918
914
|
const val = arg0;
|
919
915
|
const ret = typeof val === "object" && val !== null;
|
920
916
|
return ret;
|
921
917
|
};
|
922
|
-
imports.wbg.
|
918
|
+
imports.wbg.__wbg_wbindgenisstring_4b74e4111ba029e6 = function(arg0) {
|
923
919
|
const ret = typeof arg0 === "string";
|
924
920
|
return ret;
|
925
921
|
};
|
926
|
-
imports.wbg.
|
922
|
+
imports.wbg.__wbg_wbindgenisundefined_71f08a6ade4354e7 = function(arg0) {
|
927
923
|
const ret = arg0 === void 0;
|
928
924
|
return ret;
|
929
925
|
};
|
930
|
-
imports.wbg.
|
926
|
+
imports.wbg.__wbg_wbindgenjsvaleq_f27272c0a890df7f = function(arg0, arg1) {
|
931
927
|
const ret = arg0 === arg1;
|
932
928
|
return ret;
|
933
929
|
};
|
934
|
-
imports.wbg.
|
930
|
+
imports.wbg.__wbg_wbindgenjsvallooseeq_9dd7bb4b95ac195c = function(arg0, arg1) {
|
935
931
|
const ret = arg0 == arg1;
|
936
932
|
return ret;
|
937
933
|
};
|
938
|
-
imports.wbg.
|
939
|
-
const ret = wasm.memory;
|
940
|
-
return ret;
|
941
|
-
};
|
942
|
-
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
|
934
|
+
imports.wbg.__wbg_wbindgennumberget_d855f947247a3fbc = function(arg0, arg1) {
|
943
935
|
const obj = arg1;
|
944
936
|
const ret = typeof obj === "number" ? obj : void 0;
|
945
937
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
946
938
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
947
939
|
};
|
948
|
-
imports.wbg.
|
949
|
-
const ret = arg0;
|
950
|
-
return ret;
|
951
|
-
};
|
952
|
-
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
940
|
+
imports.wbg.__wbg_wbindgenstringget_43fe05afe34b0cb1 = function(arg0, arg1) {
|
953
941
|
const obj = arg1;
|
954
942
|
const ret = typeof obj === "string" ? obj : void 0;
|
955
943
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
@@ -957,12 +945,46 @@ function __wbg_get_imports() {
|
|
957
945
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
958
946
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
959
947
|
};
|
960
|
-
imports.wbg.
|
948
|
+
imports.wbg.__wbg_wbindgenthrow_4c11a24fca429ccf = function(arg0, arg1) {
|
949
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
950
|
+
};
|
951
|
+
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
961
952
|
const ret = getStringFromWasm0(arg0, arg1);
|
962
953
|
return ret;
|
963
954
|
};
|
964
|
-
imports.wbg.
|
965
|
-
|
955
|
+
imports.wbg.__wbindgen_cast_2ddd8a25ff58642a = function(arg0, arg1) {
|
956
|
+
const ret = BigInt.asUintN(64, arg0) | arg1 << BigInt(64);
|
957
|
+
return ret;
|
958
|
+
};
|
959
|
+
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
960
|
+
const ret = BigInt.asUintN(64, arg0);
|
961
|
+
return ret;
|
962
|
+
};
|
963
|
+
imports.wbg.__wbindgen_cast_9ae0607507abb057 = function(arg0) {
|
964
|
+
const ret = arg0;
|
965
|
+
return ret;
|
966
|
+
};
|
967
|
+
imports.wbg.__wbindgen_cast_cb9088102bce6b30 = function(arg0, arg1) {
|
968
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
969
|
+
return ret;
|
970
|
+
};
|
971
|
+
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
972
|
+
const ret = arg0;
|
973
|
+
return ret;
|
974
|
+
};
|
975
|
+
imports.wbg.__wbindgen_cast_f7331b0818e1ba43 = function(arg0, arg1) {
|
976
|
+
const ret = makeMutClosure(arg0, arg1, 4201, __wbg_adapter_10);
|
977
|
+
return ret;
|
978
|
+
};
|
979
|
+
imports.wbg.__wbindgen_init_externref_table = function() {
|
980
|
+
const table = wasm.__wbindgen_export_4;
|
981
|
+
const offset = table.grow(4);
|
982
|
+
table.set(0, void 0);
|
983
|
+
table.set(offset + 0, void 0);
|
984
|
+
table.set(offset + 1, null);
|
985
|
+
table.set(offset + 2, true);
|
986
|
+
table.set(offset + 3, false);
|
987
|
+
;
|
966
988
|
};
|
967
989
|
return imports;
|
968
990
|
}
|
@@ -1006,7 +1028,7 @@ var didkit_wasm_default = __wbg_init;
|
|
1006
1028
|
// src/didkit/index.ts
|
1007
1029
|
var initialized = false;
|
1008
1030
|
var generating = false;
|
1009
|
-
var init = /* @__PURE__ */ __name(async (arg = "https://cdn.filestackcontent.com/
|
1031
|
+
var init = /* @__PURE__ */ __name(async (arg = "https://cdn.filestackcontent.com/HpIgP6KpQeWbTWaKs1ro") => {
|
1010
1032
|
while (generating)
|
1011
1033
|
await new Promise((res) => setTimeout(res, 250));
|
1012
1034
|
if (initialized)
|