@janssenproject/cedarling_wasm 1.8.0-nodejs → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -12
- package/cedarling_wasm.d.ts +77 -0
- package/cedarling_wasm.js +616 -647
- package/cedarling_wasm_bg.wasm +0 -0
- package/package.json +6 -2
package/cedarling_wasm.js
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
let imports = {};
|
|
3
|
-
imports['__wbindgen_placeholder__'] = module.exports;
|
|
4
1
|
let wasm;
|
|
5
|
-
const { TextEncoder, TextDecoder } = require(`util`);
|
|
6
2
|
|
|
7
3
|
let WASM_VECTOR_LEN = 0;
|
|
8
4
|
|
|
@@ -15,7 +11,7 @@ function getUint8ArrayMemory0() {
|
|
|
15
11
|
return cachedUint8ArrayMemory0;
|
|
16
12
|
}
|
|
17
13
|
|
|
18
|
-
|
|
14
|
+
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
|
19
15
|
|
|
20
16
|
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
21
17
|
? function (arg, view) {
|
|
@@ -78,9 +74,9 @@ function getDataViewMemory0() {
|
|
|
78
74
|
return cachedDataViewMemory0;
|
|
79
75
|
}
|
|
80
76
|
|
|
81
|
-
|
|
77
|
+
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
82
78
|
|
|
83
|
-
cachedTextDecoder.decode();
|
|
79
|
+
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
84
80
|
|
|
85
81
|
function getStringFromWasm0(ptr, len) {
|
|
86
82
|
ptr = ptr >>> 0;
|
|
@@ -207,10 +203,10 @@ function debugString(val) {
|
|
|
207
203
|
* @param {any} config
|
|
208
204
|
* @returns {Promise<Cedarling>}
|
|
209
205
|
*/
|
|
210
|
-
|
|
206
|
+
export function init(config) {
|
|
211
207
|
const ret = wasm.init(config);
|
|
212
208
|
return ret;
|
|
213
|
-
}
|
|
209
|
+
}
|
|
214
210
|
|
|
215
211
|
function takeFromExternrefTable0(idx) {
|
|
216
212
|
const value = wasm.__wbindgen_export_4.get(idx);
|
|
@@ -235,15 +231,15 @@ function _assertClass(instance, klass) {
|
|
|
235
231
|
}
|
|
236
232
|
}
|
|
237
233
|
function __wbg_adapter_50(arg0, arg1) {
|
|
238
|
-
wasm.
|
|
234
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h8e11c17984e20636(arg0, arg1);
|
|
239
235
|
}
|
|
240
236
|
|
|
241
237
|
function __wbg_adapter_53(arg0, arg1, arg2) {
|
|
242
|
-
wasm.
|
|
238
|
+
wasm.closure539_externref_shim(arg0, arg1, arg2);
|
|
243
239
|
}
|
|
244
240
|
|
|
245
241
|
function __wbg_adapter_244(arg0, arg1, arg2, arg3) {
|
|
246
|
-
wasm.
|
|
242
|
+
wasm.closure1819_externref_shim(arg0, arg1, arg2, arg3);
|
|
247
243
|
}
|
|
248
244
|
|
|
249
245
|
const __wbindgen_enum_RequestCredentials = ["omit", "same-origin", "include"];
|
|
@@ -257,7 +253,7 @@ const AuthorizeResultFinalization = (typeof FinalizationRegistry === 'undefined'
|
|
|
257
253
|
* A WASM wrapper for the Rust `cedarling::AuthorizeResult` struct.
|
|
258
254
|
* Represents the result of an authorization request.
|
|
259
255
|
*/
|
|
260
|
-
class AuthorizeResult {
|
|
256
|
+
export class AuthorizeResult {
|
|
261
257
|
|
|
262
258
|
static __wrap(ptr) {
|
|
263
259
|
ptr = ptr >>> 0;
|
|
@@ -393,7 +389,6 @@ class AuthorizeResult {
|
|
|
393
389
|
return ret === 0 ? undefined : AuthorizeResultResponse.__wrap(ret);
|
|
394
390
|
}
|
|
395
391
|
}
|
|
396
|
-
module.exports.AuthorizeResult = AuthorizeResult;
|
|
397
392
|
|
|
398
393
|
const AuthorizeResultResponseFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
399
394
|
? { register: () => {}, unregister: () => {} }
|
|
@@ -402,7 +397,7 @@ const AuthorizeResultResponseFinalization = (typeof FinalizationRegistry === 'un
|
|
|
402
397
|
* A WASM wrapper for the Rust `cedar_policy::Response` struct.
|
|
403
398
|
* Represents the result of an authorization request.
|
|
404
399
|
*/
|
|
405
|
-
class AuthorizeResultResponse {
|
|
400
|
+
export class AuthorizeResultResponse {
|
|
406
401
|
|
|
407
402
|
static __wrap(ptr) {
|
|
408
403
|
ptr = ptr >>> 0;
|
|
@@ -440,7 +435,6 @@ class AuthorizeResultResponse {
|
|
|
440
435
|
return Diagnostics.__wrap(ret);
|
|
441
436
|
}
|
|
442
437
|
}
|
|
443
|
-
module.exports.AuthorizeResultResponse = AuthorizeResultResponse;
|
|
444
438
|
|
|
445
439
|
const CedarlingFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
446
440
|
? { register: () => {}, unregister: () => {} }
|
|
@@ -448,7 +442,7 @@ const CedarlingFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
|
448
442
|
/**
|
|
449
443
|
* The instance of the Cedarling application.
|
|
450
444
|
*/
|
|
451
|
-
class Cedarling {
|
|
445
|
+
export class Cedarling {
|
|
452
446
|
|
|
453
447
|
static __wrap(ptr) {
|
|
454
448
|
ptr = ptr >>> 0;
|
|
@@ -609,7 +603,6 @@ class Cedarling {
|
|
|
609
603
|
return ret;
|
|
610
604
|
}
|
|
611
605
|
}
|
|
612
|
-
module.exports.Cedarling = Cedarling;
|
|
613
606
|
|
|
614
607
|
const DiagnosticsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
615
608
|
? { register: () => {}, unregister: () => {} }
|
|
@@ -620,7 +613,7 @@ const DiagnosticsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
|
620
613
|
*
|
|
621
614
|
* Provides detailed information about how a policy decision was made, including policies that contributed to the decision and any errors encountered during evaluation.
|
|
622
615
|
*/
|
|
623
|
-
class Diagnostics {
|
|
616
|
+
export class Diagnostics {
|
|
624
617
|
|
|
625
618
|
static __wrap(ptr) {
|
|
626
619
|
ptr = ptr >>> 0;
|
|
@@ -666,13 +659,12 @@ class Diagnostics {
|
|
|
666
659
|
return v1;
|
|
667
660
|
}
|
|
668
661
|
}
|
|
669
|
-
module.exports.Diagnostics = Diagnostics;
|
|
670
662
|
|
|
671
663
|
const JsJsonLogicFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
672
664
|
? { register: () => {}, unregister: () => {} }
|
|
673
665
|
: new FinalizationRegistry(ptr => wasm.__wbg_jsjsonlogic_free(ptr >>> 0, 1));
|
|
674
666
|
|
|
675
|
-
class JsJsonLogic {
|
|
667
|
+
export class JsJsonLogic {
|
|
676
668
|
|
|
677
669
|
__destroy_into_raw() {
|
|
678
670
|
const ptr = this.__wbg_ptr;
|
|
@@ -704,7 +696,6 @@ class JsJsonLogic {
|
|
|
704
696
|
return takeFromExternrefTable0(ret[0]);
|
|
705
697
|
}
|
|
706
698
|
}
|
|
707
|
-
module.exports.JsJsonLogic = JsJsonLogic;
|
|
708
699
|
|
|
709
700
|
const PolicyEvaluationErrorFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
710
701
|
? { register: () => {}, unregister: () => {} }
|
|
@@ -715,7 +706,7 @@ const PolicyEvaluationErrorFinalization = (typeof FinalizationRegistry === 'unde
|
|
|
715
706
|
*
|
|
716
707
|
* Represents an error that occurred when evaluating a Cedar policy.
|
|
717
708
|
*/
|
|
718
|
-
class PolicyEvaluationError {
|
|
709
|
+
export class PolicyEvaluationError {
|
|
719
710
|
|
|
720
711
|
static __wrap(ptr) {
|
|
721
712
|
ptr = ptr >>> 0;
|
|
@@ -769,662 +760,640 @@ class PolicyEvaluationError {
|
|
|
769
760
|
}
|
|
770
761
|
}
|
|
771
762
|
}
|
|
772
|
-
module.exports.PolicyEvaluationError = PolicyEvaluationError;
|
|
773
|
-
|
|
774
|
-
module.exports.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
775
|
-
const ret = String(arg1);
|
|
776
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
777
|
-
const len1 = WASM_VECTOR_LEN;
|
|
778
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
779
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
780
|
-
};
|
|
781
|
-
|
|
782
|
-
module.exports.__wbg_abort_410ec47a64ac6117 = function(arg0, arg1) {
|
|
783
|
-
arg0.abort(arg1);
|
|
784
|
-
};
|
|
785
|
-
|
|
786
|
-
module.exports.__wbg_abort_775ef1d17fc65868 = function(arg0) {
|
|
787
|
-
arg0.abort();
|
|
788
|
-
};
|
|
789
|
-
|
|
790
|
-
module.exports.__wbg_append_8c7dd8d641a5f01b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
791
|
-
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
792
|
-
}, arguments) };
|
|
793
|
-
|
|
794
|
-
module.exports.__wbg_arrayBuffer_d1b44c4390db422f = function() { return handleError(function (arg0) {
|
|
795
|
-
const ret = arg0.arrayBuffer();
|
|
796
|
-
return ret;
|
|
797
|
-
}, arguments) };
|
|
798
|
-
|
|
799
|
-
module.exports.__wbg_authorizeresult_new = function(arg0) {
|
|
800
|
-
const ret = AuthorizeResult.__wrap(arg0);
|
|
801
|
-
return ret;
|
|
802
|
-
};
|
|
803
|
-
|
|
804
|
-
module.exports.__wbg_buffer_609cc3eee51ed158 = function(arg0) {
|
|
805
|
-
const ret = arg0.buffer;
|
|
806
|
-
return ret;
|
|
807
|
-
};
|
|
808
|
-
|
|
809
|
-
module.exports.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
|
|
810
|
-
const ret = arg0.call(arg1);
|
|
811
|
-
return ret;
|
|
812
|
-
}, arguments) };
|
|
813
|
-
|
|
814
|
-
module.exports.__wbg_call_7cccdd69e0791ae2 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
815
|
-
const ret = arg0.call(arg1, arg2);
|
|
816
|
-
return ret;
|
|
817
|
-
}, arguments) };
|
|
818
|
-
|
|
819
|
-
module.exports.__wbg_cedarling_new = function(arg0) {
|
|
820
|
-
const ret = Cedarling.__wrap(arg0);
|
|
821
|
-
return ret;
|
|
822
|
-
};
|
|
823
763
|
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
module.exports.__wbg_crypto_574e78ad8b13b65f = function(arg0) {
|
|
830
|
-
const ret = arg0.crypto;
|
|
831
|
-
return ret;
|
|
832
|
-
};
|
|
833
|
-
|
|
834
|
-
module.exports.__wbg_debug_faaa2b98a2718860 = function(arg0) {
|
|
835
|
-
console.debug(...arg0);
|
|
836
|
-
};
|
|
837
|
-
|
|
838
|
-
module.exports.__wbg_done_769e5ede4b31c67b = function(arg0) {
|
|
839
|
-
const ret = arg0.done;
|
|
840
|
-
return ret;
|
|
841
|
-
};
|
|
842
|
-
|
|
843
|
-
module.exports.__wbg_entries_3265d4158b33e5dc = function(arg0) {
|
|
844
|
-
const ret = Object.entries(arg0);
|
|
845
|
-
return ret;
|
|
846
|
-
};
|
|
764
|
+
async function __wbg_load(module, imports) {
|
|
765
|
+
if (typeof Response === 'function' && module instanceof Response) {
|
|
766
|
+
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
767
|
+
try {
|
|
768
|
+
return await WebAssembly.instantiateStreaming(module, imports);
|
|
847
769
|
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
};
|
|
770
|
+
} catch (e) {
|
|
771
|
+
if (module.headers.get('Content-Type') != 'application/wasm') {
|
|
772
|
+
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
852
773
|
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
}
|
|
774
|
+
} else {
|
|
775
|
+
throw e;
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
}
|
|
856
779
|
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
return ret;
|
|
860
|
-
};
|
|
780
|
+
const bytes = await module.arrayBuffer();
|
|
781
|
+
return await WebAssembly.instantiate(bytes, imports);
|
|
861
782
|
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
return ret;
|
|
865
|
-
};
|
|
783
|
+
} else {
|
|
784
|
+
const instance = await WebAssembly.instantiate(module, imports);
|
|
866
785
|
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
return ret;
|
|
870
|
-
}, arguments) };
|
|
786
|
+
if (instance instanceof WebAssembly.Instance) {
|
|
787
|
+
return { instance, module };
|
|
871
788
|
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
}
|
|
789
|
+
} else {
|
|
790
|
+
return instance;
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
}
|
|
875
794
|
|
|
876
|
-
|
|
877
|
-
const
|
|
878
|
-
|
|
879
|
-
|
|
795
|
+
function __wbg_get_imports() {
|
|
796
|
+
const imports = {};
|
|
797
|
+
imports.wbg = {};
|
|
798
|
+
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
799
|
+
const ret = String(arg1);
|
|
800
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
801
|
+
const len1 = WASM_VECTOR_LEN;
|
|
802
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
803
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
804
|
+
};
|
|
805
|
+
imports.wbg.__wbg_abort_410ec47a64ac6117 = function(arg0, arg1) {
|
|
806
|
+
arg0.abort(arg1);
|
|
807
|
+
};
|
|
808
|
+
imports.wbg.__wbg_abort_775ef1d17fc65868 = function(arg0) {
|
|
809
|
+
arg0.abort();
|
|
810
|
+
};
|
|
811
|
+
imports.wbg.__wbg_append_8c7dd8d641a5f01b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
812
|
+
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
813
|
+
}, arguments) };
|
|
814
|
+
imports.wbg.__wbg_arrayBuffer_d1b44c4390db422f = function() { return handleError(function (arg0) {
|
|
815
|
+
const ret = arg0.arrayBuffer();
|
|
816
|
+
return ret;
|
|
817
|
+
}, arguments) };
|
|
818
|
+
imports.wbg.__wbg_authorizeresult_new = function(arg0) {
|
|
819
|
+
const ret = AuthorizeResult.__wrap(arg0);
|
|
820
|
+
return ret;
|
|
821
|
+
};
|
|
822
|
+
imports.wbg.__wbg_buffer_609cc3eee51ed158 = function(arg0) {
|
|
823
|
+
const ret = arg0.buffer;
|
|
824
|
+
return ret;
|
|
825
|
+
};
|
|
826
|
+
imports.wbg.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
|
|
827
|
+
const ret = arg0.call(arg1);
|
|
828
|
+
return ret;
|
|
829
|
+
}, arguments) };
|
|
830
|
+
imports.wbg.__wbg_call_7cccdd69e0791ae2 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
831
|
+
const ret = arg0.call(arg1, arg2);
|
|
832
|
+
return ret;
|
|
833
|
+
}, arguments) };
|
|
834
|
+
imports.wbg.__wbg_cedarling_new = function(arg0) {
|
|
835
|
+
const ret = Cedarling.__wrap(arg0);
|
|
836
|
+
return ret;
|
|
837
|
+
};
|
|
838
|
+
imports.wbg.__wbg_clearTimeout_0b53d391c1b94dda = function(arg0) {
|
|
839
|
+
const ret = clearTimeout(arg0);
|
|
840
|
+
return ret;
|
|
841
|
+
};
|
|
842
|
+
imports.wbg.__wbg_crypto_574e78ad8b13b65f = function(arg0) {
|
|
843
|
+
const ret = arg0.crypto;
|
|
844
|
+
return ret;
|
|
845
|
+
};
|
|
846
|
+
imports.wbg.__wbg_debug_faaa2b98a2718860 = function(arg0) {
|
|
847
|
+
console.debug(...arg0);
|
|
848
|
+
};
|
|
849
|
+
imports.wbg.__wbg_done_769e5ede4b31c67b = function(arg0) {
|
|
850
|
+
const ret = arg0.done;
|
|
851
|
+
return ret;
|
|
852
|
+
};
|
|
853
|
+
imports.wbg.__wbg_entries_3265d4158b33e5dc = function(arg0) {
|
|
854
|
+
const ret = Object.entries(arg0);
|
|
855
|
+
return ret;
|
|
856
|
+
};
|
|
857
|
+
imports.wbg.__wbg_entries_c8a90a7ed73e84ce = function(arg0) {
|
|
858
|
+
const ret = arg0.entries();
|
|
859
|
+
return ret;
|
|
860
|
+
};
|
|
861
|
+
imports.wbg.__wbg_error_dc53417fcef5463a = function(arg0) {
|
|
862
|
+
console.error(...arg0);
|
|
863
|
+
};
|
|
864
|
+
imports.wbg.__wbg_fetch_11bff8299d0ecd2b = function(arg0) {
|
|
865
|
+
const ret = fetch(arg0);
|
|
866
|
+
return ret;
|
|
867
|
+
};
|
|
868
|
+
imports.wbg.__wbg_fetch_509096533071c657 = function(arg0, arg1) {
|
|
869
|
+
const ret = arg0.fetch(arg1);
|
|
870
|
+
return ret;
|
|
871
|
+
};
|
|
872
|
+
imports.wbg.__wbg_fromEntries_524679eecb0bdc2e = function() { return handleError(function (arg0) {
|
|
873
|
+
const ret = Object.fromEntries(arg0);
|
|
874
|
+
return ret;
|
|
875
|
+
}, arguments) };
|
|
876
|
+
imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) {
|
|
877
|
+
arg0.getRandomValues(arg1);
|
|
878
|
+
}, arguments) };
|
|
879
|
+
imports.wbg.__wbg_getTime_46267b1c24877e30 = function(arg0) {
|
|
880
|
+
const ret = arg0.getTime();
|
|
881
|
+
return ret;
|
|
882
|
+
};
|
|
883
|
+
imports.wbg.__wbg_getTimezoneOffset_6b5752021c499c47 = function(arg0) {
|
|
884
|
+
const ret = arg0.getTimezoneOffset();
|
|
885
|
+
return ret;
|
|
886
|
+
};
|
|
887
|
+
imports.wbg.__wbg_get_67b2ba62fc30de12 = function() { return handleError(function (arg0, arg1) {
|
|
888
|
+
const ret = Reflect.get(arg0, arg1);
|
|
889
|
+
return ret;
|
|
890
|
+
}, arguments) };
|
|
891
|
+
imports.wbg.__wbg_get_b9b93047fe3cf45b = function(arg0, arg1) {
|
|
892
|
+
const ret = arg0[arg1 >>> 0];
|
|
893
|
+
return ret;
|
|
894
|
+
};
|
|
895
|
+
imports.wbg.__wbg_getwithrefkey_1dc361bd10053bfe = function(arg0, arg1) {
|
|
896
|
+
const ret = arg0[arg1];
|
|
897
|
+
return ret;
|
|
898
|
+
};
|
|
899
|
+
imports.wbg.__wbg_has_a5ea9117f258a0ec = function() { return handleError(function (arg0, arg1) {
|
|
900
|
+
const ret = Reflect.has(arg0, arg1);
|
|
901
|
+
return ret;
|
|
902
|
+
}, arguments) };
|
|
903
|
+
imports.wbg.__wbg_headers_9cb51cfd2ac780a4 = function(arg0) {
|
|
904
|
+
const ret = arg0.headers;
|
|
905
|
+
return ret;
|
|
906
|
+
};
|
|
907
|
+
imports.wbg.__wbg_info_7fbe81f62c7b4dab = function(arg0) {
|
|
908
|
+
console.info(...arg0);
|
|
909
|
+
};
|
|
910
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function(arg0) {
|
|
911
|
+
let result;
|
|
912
|
+
try {
|
|
913
|
+
result = arg0 instanceof ArrayBuffer;
|
|
914
|
+
} catch (_) {
|
|
915
|
+
result = false;
|
|
916
|
+
}
|
|
917
|
+
const ret = result;
|
|
918
|
+
return ret;
|
|
919
|
+
};
|
|
920
|
+
imports.wbg.__wbg_instanceof_Array_6ac07133d621675a = function(arg0) {
|
|
921
|
+
let result;
|
|
922
|
+
try {
|
|
923
|
+
result = arg0 instanceof Array;
|
|
924
|
+
} catch (_) {
|
|
925
|
+
result = false;
|
|
926
|
+
}
|
|
927
|
+
const ret = result;
|
|
928
|
+
return ret;
|
|
929
|
+
};
|
|
930
|
+
imports.wbg.__wbg_instanceof_Map_f3469ce2244d2430 = function(arg0) {
|
|
931
|
+
let result;
|
|
932
|
+
try {
|
|
933
|
+
result = arg0 instanceof Map;
|
|
934
|
+
} catch (_) {
|
|
935
|
+
result = false;
|
|
936
|
+
}
|
|
937
|
+
const ret = result;
|
|
938
|
+
return ret;
|
|
939
|
+
};
|
|
940
|
+
imports.wbg.__wbg_instanceof_Response_f2cc20d9f7dfd644 = function(arg0) {
|
|
941
|
+
let result;
|
|
942
|
+
try {
|
|
943
|
+
result = arg0 instanceof Response;
|
|
944
|
+
} catch (_) {
|
|
945
|
+
result = false;
|
|
946
|
+
}
|
|
947
|
+
const ret = result;
|
|
948
|
+
return ret;
|
|
949
|
+
};
|
|
950
|
+
imports.wbg.__wbg_instanceof_Uint8Array_17156bcf118086a9 = function(arg0) {
|
|
951
|
+
let result;
|
|
952
|
+
try {
|
|
953
|
+
result = arg0 instanceof Uint8Array;
|
|
954
|
+
} catch (_) {
|
|
955
|
+
result = false;
|
|
956
|
+
}
|
|
957
|
+
const ret = result;
|
|
958
|
+
return ret;
|
|
959
|
+
};
|
|
960
|
+
imports.wbg.__wbg_isArray_a1eab7e0d067391b = function(arg0) {
|
|
961
|
+
const ret = Array.isArray(arg0);
|
|
962
|
+
return ret;
|
|
963
|
+
};
|
|
964
|
+
imports.wbg.__wbg_isSafeInteger_343e2beeeece1bb0 = function(arg0) {
|
|
965
|
+
const ret = Number.isSafeInteger(arg0);
|
|
966
|
+
return ret;
|
|
967
|
+
};
|
|
968
|
+
imports.wbg.__wbg_iterator_9a24c88df860dc65 = function() {
|
|
969
|
+
const ret = Symbol.iterator;
|
|
970
|
+
return ret;
|
|
971
|
+
};
|
|
972
|
+
imports.wbg.__wbg_keys_5c77a08ddc2fb8a6 = function(arg0) {
|
|
973
|
+
const ret = Object.keys(arg0);
|
|
974
|
+
return ret;
|
|
975
|
+
};
|
|
976
|
+
imports.wbg.__wbg_length_a446193dc22c12f8 = function(arg0) {
|
|
977
|
+
const ret = arg0.length;
|
|
978
|
+
return ret;
|
|
979
|
+
};
|
|
980
|
+
imports.wbg.__wbg_length_e2d2a49132c1b256 = function(arg0) {
|
|
981
|
+
const ret = arg0.length;
|
|
982
|
+
return ret;
|
|
983
|
+
};
|
|
984
|
+
imports.wbg.__wbg_log_245868b4b99cdf20 = function(arg0) {
|
|
985
|
+
console.log(...arg0);
|
|
986
|
+
};
|
|
987
|
+
imports.wbg.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
|
988
|
+
const ret = arg0.msCrypto;
|
|
989
|
+
return ret;
|
|
990
|
+
};
|
|
991
|
+
imports.wbg.__wbg_new0_f788a2397c7ca929 = function() {
|
|
992
|
+
const ret = new Date();
|
|
993
|
+
return ret;
|
|
994
|
+
};
|
|
995
|
+
imports.wbg.__wbg_new_018dcc2d6c8c2f6a = function() { return handleError(function () {
|
|
996
|
+
const ret = new Headers();
|
|
997
|
+
return ret;
|
|
998
|
+
}, arguments) };
|
|
999
|
+
imports.wbg.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
|
|
1000
|
+
try {
|
|
1001
|
+
var state0 = {a: arg0, b: arg1};
|
|
1002
|
+
var cb0 = (arg0, arg1) => {
|
|
1003
|
+
const a = state0.a;
|
|
1004
|
+
state0.a = 0;
|
|
1005
|
+
try {
|
|
1006
|
+
return __wbg_adapter_244(a, state0.b, arg0, arg1);
|
|
1007
|
+
} finally {
|
|
1008
|
+
state0.a = a;
|
|
1009
|
+
}
|
|
1010
|
+
};
|
|
1011
|
+
const ret = new Promise(cb0);
|
|
1012
|
+
return ret;
|
|
1013
|
+
} finally {
|
|
1014
|
+
state0.a = state0.b = 0;
|
|
1015
|
+
}
|
|
1016
|
+
};
|
|
1017
|
+
imports.wbg.__wbg_new_31a97dac4f10fab7 = function(arg0) {
|
|
1018
|
+
const ret = new Date(arg0);
|
|
1019
|
+
return ret;
|
|
1020
|
+
};
|
|
1021
|
+
imports.wbg.__wbg_new_405e22f390576ce2 = function() {
|
|
1022
|
+
const ret = new Object();
|
|
1023
|
+
return ret;
|
|
1024
|
+
};
|
|
1025
|
+
imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
|
|
1026
|
+
const ret = new Map();
|
|
1027
|
+
return ret;
|
|
1028
|
+
};
|
|
1029
|
+
imports.wbg.__wbg_new_78feb108b6472713 = function() {
|
|
1030
|
+
const ret = new Array();
|
|
1031
|
+
return ret;
|
|
1032
|
+
};
|
|
1033
|
+
imports.wbg.__wbg_new_a12002a7f91c75be = function(arg0) {
|
|
1034
|
+
const ret = new Uint8Array(arg0);
|
|
1035
|
+
return ret;
|
|
1036
|
+
};
|
|
1037
|
+
imports.wbg.__wbg_new_e25e5aab09ff45db = function() { return handleError(function () {
|
|
1038
|
+
const ret = new AbortController();
|
|
1039
|
+
return ret;
|
|
1040
|
+
}, arguments) };
|
|
1041
|
+
imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
|
1042
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1043
|
+
return ret;
|
|
1044
|
+
};
|
|
1045
|
+
imports.wbg.__wbg_newwithargs_ab6ffe8cd6c19c04 = function(arg0, arg1, arg2, arg3) {
|
|
1046
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1047
|
+
return ret;
|
|
1048
|
+
};
|
|
1049
|
+
imports.wbg.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(arg0, arg1, arg2) {
|
|
1050
|
+
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
1051
|
+
return ret;
|
|
1052
|
+
};
|
|
1053
|
+
imports.wbg.__wbg_newwithlength_a381634e90c276d4 = function(arg0) {
|
|
1054
|
+
const ret = new Uint8Array(arg0 >>> 0);
|
|
1055
|
+
return ret;
|
|
1056
|
+
};
|
|
1057
|
+
imports.wbg.__wbg_newwithstrandinit_06c535e0a867c635 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1058
|
+
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1059
|
+
return ret;
|
|
1060
|
+
}, arguments) };
|
|
1061
|
+
imports.wbg.__wbg_next_25feadfc0913fea9 = function(arg0) {
|
|
1062
|
+
const ret = arg0.next;
|
|
1063
|
+
return ret;
|
|
1064
|
+
};
|
|
1065
|
+
imports.wbg.__wbg_next_6574e1a8a62d1055 = function() { return handleError(function (arg0) {
|
|
1066
|
+
const ret = arg0.next();
|
|
1067
|
+
return ret;
|
|
1068
|
+
}, arguments) };
|
|
1069
|
+
imports.wbg.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
|
1070
|
+
const ret = arg0.node;
|
|
1071
|
+
return ret;
|
|
1072
|
+
};
|
|
1073
|
+
imports.wbg.__wbg_policyevaluationerror_new = function(arg0) {
|
|
1074
|
+
const ret = PolicyEvaluationError.__wrap(arg0);
|
|
1075
|
+
return ret;
|
|
1076
|
+
};
|
|
1077
|
+
imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
|
1078
|
+
const ret = arg0.process;
|
|
1079
|
+
return ret;
|
|
1080
|
+
};
|
|
1081
|
+
imports.wbg.__wbg_push_737cfc8c1432c2c6 = function(arg0, arg1) {
|
|
1082
|
+
const ret = arg0.push(arg1);
|
|
1083
|
+
return ret;
|
|
1084
|
+
};
|
|
1085
|
+
imports.wbg.__wbg_queueMicrotask_97d92b4fcc8a61c5 = function(arg0) {
|
|
1086
|
+
queueMicrotask(arg0);
|
|
1087
|
+
};
|
|
1088
|
+
imports.wbg.__wbg_queueMicrotask_d3219def82552485 = function(arg0) {
|
|
1089
|
+
const ret = arg0.queueMicrotask;
|
|
1090
|
+
return ret;
|
|
1091
|
+
};
|
|
1092
|
+
imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
1093
|
+
arg0.randomFillSync(arg1);
|
|
1094
|
+
}, arguments) };
|
|
1095
|
+
imports.wbg.__wbg_require_60cc747a6bc5215a = function() { return handleError(function () {
|
|
1096
|
+
const ret = module.require;
|
|
1097
|
+
return ret;
|
|
1098
|
+
}, arguments) };
|
|
1099
|
+
imports.wbg.__wbg_resolve_4851785c9c5f573d = function(arg0) {
|
|
1100
|
+
const ret = Promise.resolve(arg0);
|
|
1101
|
+
return ret;
|
|
1102
|
+
};
|
|
1103
|
+
imports.wbg.__wbg_setTimeout_73ce8df12de4f2f2 = function(arg0, arg1) {
|
|
1104
|
+
const ret = setTimeout(arg0, arg1);
|
|
1105
|
+
return ret;
|
|
1106
|
+
};
|
|
1107
|
+
imports.wbg.__wbg_set_37837023f3d740e8 = function(arg0, arg1, arg2) {
|
|
1108
|
+
arg0[arg1 >>> 0] = arg2;
|
|
1109
|
+
};
|
|
1110
|
+
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1111
|
+
arg0[arg1] = arg2;
|
|
1112
|
+
};
|
|
1113
|
+
imports.wbg.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) {
|
|
1114
|
+
arg0.set(arg1, arg2 >>> 0);
|
|
1115
|
+
};
|
|
1116
|
+
imports.wbg.__wbg_set_8fc6bf8a5b1071d1 = function(arg0, arg1, arg2) {
|
|
1117
|
+
const ret = arg0.set(arg1, arg2);
|
|
1118
|
+
return ret;
|
|
1119
|
+
};
|
|
1120
|
+
imports.wbg.__wbg_set_bb8cecf6a62b9f46 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1121
|
+
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1122
|
+
return ret;
|
|
1123
|
+
}, arguments) };
|
|
1124
|
+
imports.wbg.__wbg_setbody_5923b78a95eedf29 = function(arg0, arg1) {
|
|
1125
|
+
arg0.body = arg1;
|
|
1126
|
+
};
|
|
1127
|
+
imports.wbg.__wbg_setcredentials_c3a22f1cd105a2c6 = function(arg0, arg1) {
|
|
1128
|
+
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1129
|
+
};
|
|
1130
|
+
imports.wbg.__wbg_setheaders_834c0bdb6a8949ad = function(arg0, arg1) {
|
|
1131
|
+
arg0.headers = arg1;
|
|
1132
|
+
};
|
|
1133
|
+
imports.wbg.__wbg_setmethod_3c5280fe5d890842 = function(arg0, arg1, arg2) {
|
|
1134
|
+
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1135
|
+
};
|
|
1136
|
+
imports.wbg.__wbg_setmode_5dc300b865044b65 = function(arg0, arg1) {
|
|
1137
|
+
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1138
|
+
};
|
|
1139
|
+
imports.wbg.__wbg_setsignal_75b21ef3a81de905 = function(arg0, arg1) {
|
|
1140
|
+
arg0.signal = arg1;
|
|
1141
|
+
};
|
|
1142
|
+
imports.wbg.__wbg_signal_aaf9ad74119f20a4 = function(arg0) {
|
|
1143
|
+
const ret = arg0.signal;
|
|
1144
|
+
return ret;
|
|
1145
|
+
};
|
|
1146
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_88a902d13a557d07 = function() {
|
|
1147
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
1148
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1149
|
+
};
|
|
1150
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0 = function() {
|
|
1151
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1152
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1153
|
+
};
|
|
1154
|
+
imports.wbg.__wbg_static_accessor_SELF_37c5d418e4bf5819 = function() {
|
|
1155
|
+
const ret = typeof self === 'undefined' ? null : self;
|
|
1156
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1157
|
+
};
|
|
1158
|
+
imports.wbg.__wbg_static_accessor_WINDOW_5de37043a91a9c40 = function() {
|
|
1159
|
+
const ret = typeof window === 'undefined' ? null : window;
|
|
1160
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1161
|
+
};
|
|
1162
|
+
imports.wbg.__wbg_status_f6360336ca686bf0 = function(arg0) {
|
|
1163
|
+
const ret = arg0.status;
|
|
1164
|
+
return ret;
|
|
1165
|
+
};
|
|
1166
|
+
imports.wbg.__wbg_stringify_f7ed6987935b4a24 = function() { return handleError(function (arg0) {
|
|
1167
|
+
const ret = JSON.stringify(arg0);
|
|
1168
|
+
return ret;
|
|
1169
|
+
}, arguments) };
|
|
1170
|
+
imports.wbg.__wbg_subarray_aa9065fa9dc5df96 = function(arg0, arg1, arg2) {
|
|
1171
|
+
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1172
|
+
return ret;
|
|
1173
|
+
};
|
|
1174
|
+
imports.wbg.__wbg_text_7805bea50de2af49 = function() { return handleError(function (arg0) {
|
|
1175
|
+
const ret = arg0.text();
|
|
1176
|
+
return ret;
|
|
1177
|
+
}, arguments) };
|
|
1178
|
+
imports.wbg.__wbg_then_44b73946d2fb3e7d = function(arg0, arg1) {
|
|
1179
|
+
const ret = arg0.then(arg1);
|
|
1180
|
+
return ret;
|
|
1181
|
+
};
|
|
1182
|
+
imports.wbg.__wbg_then_48b406749878a531 = function(arg0, arg1, arg2) {
|
|
1183
|
+
const ret = arg0.then(arg1, arg2);
|
|
1184
|
+
return ret;
|
|
1185
|
+
};
|
|
1186
|
+
imports.wbg.__wbg_trace_8fa9ac2274ea7420 = function(arg0) {
|
|
1187
|
+
console.trace(...arg0);
|
|
1188
|
+
};
|
|
1189
|
+
imports.wbg.__wbg_url_ae10c34ca209681d = function(arg0, arg1) {
|
|
1190
|
+
const ret = arg1.url;
|
|
1191
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1192
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1193
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1194
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1195
|
+
};
|
|
1196
|
+
imports.wbg.__wbg_value_cd1ffa7b1ab794f1 = function(arg0) {
|
|
1197
|
+
const ret = arg0.value;
|
|
1198
|
+
return ret;
|
|
1199
|
+
};
|
|
1200
|
+
imports.wbg.__wbg_versions_c01dfd4722a88165 = function(arg0) {
|
|
1201
|
+
const ret = arg0.versions;
|
|
1202
|
+
return ret;
|
|
1203
|
+
};
|
|
1204
|
+
imports.wbg.__wbg_warn_ba4bf5118b457d45 = function(arg0) {
|
|
1205
|
+
console.warn(...arg0);
|
|
1206
|
+
};
|
|
1207
|
+
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {
|
|
1208
|
+
const ret = arg0;
|
|
1209
|
+
return ret;
|
|
1210
|
+
};
|
|
1211
|
+
imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
1212
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
1213
|
+
return ret;
|
|
1214
|
+
};
|
|
1215
|
+
imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
|
|
1216
|
+
const v = arg1;
|
|
1217
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
1218
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
1219
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1220
|
+
};
|
|
1221
|
+
imports.wbg.__wbindgen_boolean_get = function(arg0) {
|
|
1222
|
+
const v = arg0;
|
|
1223
|
+
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
1224
|
+
return ret;
|
|
1225
|
+
};
|
|
1226
|
+
imports.wbg.__wbindgen_cb_drop = function(arg0) {
|
|
1227
|
+
const obj = arg0.original;
|
|
1228
|
+
if (obj.cnt-- == 1) {
|
|
1229
|
+
obj.a = 0;
|
|
1230
|
+
return true;
|
|
1231
|
+
}
|
|
1232
|
+
const ret = false;
|
|
1233
|
+
return ret;
|
|
1234
|
+
};
|
|
1235
|
+
imports.wbg.__wbindgen_closure_wrapper3866 = function(arg0, arg1, arg2) {
|
|
1236
|
+
const ret = makeMutClosure(arg0, arg1, 495, __wbg_adapter_50);
|
|
1237
|
+
return ret;
|
|
1238
|
+
};
|
|
1239
|
+
imports.wbg.__wbindgen_closure_wrapper4018 = function(arg0, arg1, arg2) {
|
|
1240
|
+
const ret = makeMutClosure(arg0, arg1, 540, __wbg_adapter_53);
|
|
1241
|
+
return ret;
|
|
1242
|
+
};
|
|
1243
|
+
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
1244
|
+
const ret = debugString(arg1);
|
|
1245
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1246
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1247
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1248
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1249
|
+
};
|
|
1250
|
+
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
|
|
1251
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
1252
|
+
return ret;
|
|
1253
|
+
};
|
|
1254
|
+
imports.wbg.__wbindgen_in = function(arg0, arg1) {
|
|
1255
|
+
const ret = arg0 in arg1;
|
|
1256
|
+
return ret;
|
|
1257
|
+
};
|
|
1258
|
+
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
1259
|
+
const table = wasm.__wbindgen_export_4;
|
|
1260
|
+
const offset = table.grow(4);
|
|
1261
|
+
table.set(0, undefined);
|
|
1262
|
+
table.set(offset + 0, undefined);
|
|
1263
|
+
table.set(offset + 1, null);
|
|
1264
|
+
table.set(offset + 2, true);
|
|
1265
|
+
table.set(offset + 3, false);
|
|
1266
|
+
;
|
|
1267
|
+
};
|
|
1268
|
+
imports.wbg.__wbindgen_is_bigint = function(arg0) {
|
|
1269
|
+
const ret = typeof(arg0) === 'bigint';
|
|
1270
|
+
return ret;
|
|
1271
|
+
};
|
|
1272
|
+
imports.wbg.__wbindgen_is_function = function(arg0) {
|
|
1273
|
+
const ret = typeof(arg0) === 'function';
|
|
1274
|
+
return ret;
|
|
1275
|
+
};
|
|
1276
|
+
imports.wbg.__wbindgen_is_object = function(arg0) {
|
|
1277
|
+
const val = arg0;
|
|
1278
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
1279
|
+
return ret;
|
|
1280
|
+
};
|
|
1281
|
+
imports.wbg.__wbindgen_is_string = function(arg0) {
|
|
1282
|
+
const ret = typeof(arg0) === 'string';
|
|
1283
|
+
return ret;
|
|
1284
|
+
};
|
|
1285
|
+
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
1286
|
+
const ret = arg0 === undefined;
|
|
1287
|
+
return ret;
|
|
1288
|
+
};
|
|
1289
|
+
imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) {
|
|
1290
|
+
const ret = arg0 === arg1;
|
|
1291
|
+
return ret;
|
|
1292
|
+
};
|
|
1293
|
+
imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
1294
|
+
const ret = arg0 == arg1;
|
|
1295
|
+
return ret;
|
|
1296
|
+
};
|
|
1297
|
+
imports.wbg.__wbindgen_memory = function() {
|
|
1298
|
+
const ret = wasm.memory;
|
|
1299
|
+
return ret;
|
|
1300
|
+
};
|
|
1301
|
+
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
|
|
1302
|
+
const obj = arg1;
|
|
1303
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
1304
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1305
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1306
|
+
};
|
|
1307
|
+
imports.wbg.__wbindgen_number_new = function(arg0) {
|
|
1308
|
+
const ret = arg0;
|
|
1309
|
+
return ret;
|
|
1310
|
+
};
|
|
1311
|
+
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
1312
|
+
const obj = arg1;
|
|
1313
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1314
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1315
|
+
var len1 = WASM_VECTOR_LEN;
|
|
1316
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1317
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1318
|
+
};
|
|
1319
|
+
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
|
|
1320
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
1321
|
+
return ret;
|
|
1322
|
+
};
|
|
1323
|
+
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
1324
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1325
|
+
};
|
|
880
1326
|
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
return ret;
|
|
884
|
-
};
|
|
1327
|
+
return imports;
|
|
1328
|
+
}
|
|
885
1329
|
|
|
886
|
-
|
|
887
|
-
const ret = Reflect.get(arg0, arg1);
|
|
888
|
-
return ret;
|
|
889
|
-
}, arguments) };
|
|
1330
|
+
function __wbg_init_memory(imports, memory) {
|
|
890
1331
|
|
|
891
|
-
|
|
892
|
-
const ret = arg0[arg1 >>> 0];
|
|
893
|
-
return ret;
|
|
894
|
-
};
|
|
1332
|
+
}
|
|
895
1333
|
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
1334
|
+
function __wbg_finalize_init(instance, module) {
|
|
1335
|
+
wasm = instance.exports;
|
|
1336
|
+
__wbg_init.__wbindgen_wasm_module = module;
|
|
1337
|
+
cachedDataViewMemory0 = null;
|
|
1338
|
+
cachedUint8ArrayMemory0 = null;
|
|
900
1339
|
|
|
901
|
-
module.exports.__wbg_has_a5ea9117f258a0ec = function() { return handleError(function (arg0, arg1) {
|
|
902
|
-
const ret = Reflect.has(arg0, arg1);
|
|
903
|
-
return ret;
|
|
904
|
-
}, arguments) };
|
|
905
1340
|
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
};
|
|
1341
|
+
wasm.__wbindgen_start();
|
|
1342
|
+
return wasm;
|
|
1343
|
+
}
|
|
910
1344
|
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
};
|
|
1345
|
+
function initSync(module) {
|
|
1346
|
+
if (wasm !== undefined) return wasm;
|
|
914
1347
|
|
|
915
|
-
module.exports.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function(arg0) {
|
|
916
|
-
let result;
|
|
917
|
-
try {
|
|
918
|
-
result = arg0 instanceof ArrayBuffer;
|
|
919
|
-
} catch (_) {
|
|
920
|
-
result = false;
|
|
921
|
-
}
|
|
922
|
-
const ret = result;
|
|
923
|
-
return ret;
|
|
924
|
-
};
|
|
925
1348
|
|
|
926
|
-
module
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
1349
|
+
if (typeof module !== 'undefined') {
|
|
1350
|
+
if (Object.getPrototypeOf(module) === Object.prototype) {
|
|
1351
|
+
({module} = module)
|
|
1352
|
+
} else {
|
|
1353
|
+
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
|
1354
|
+
}
|
|
932
1355
|
}
|
|
933
|
-
const ret = result;
|
|
934
|
-
return ret;
|
|
935
|
-
};
|
|
936
1356
|
|
|
937
|
-
|
|
938
|
-
let result;
|
|
939
|
-
try {
|
|
940
|
-
result = arg0 instanceof Map;
|
|
941
|
-
} catch (_) {
|
|
942
|
-
result = false;
|
|
943
|
-
}
|
|
944
|
-
const ret = result;
|
|
945
|
-
return ret;
|
|
946
|
-
};
|
|
1357
|
+
const imports = __wbg_get_imports();
|
|
947
1358
|
|
|
948
|
-
|
|
949
|
-
let result;
|
|
950
|
-
try {
|
|
951
|
-
result = arg0 instanceof Response;
|
|
952
|
-
} catch (_) {
|
|
953
|
-
result = false;
|
|
954
|
-
}
|
|
955
|
-
const ret = result;
|
|
956
|
-
return ret;
|
|
957
|
-
};
|
|
1359
|
+
__wbg_init_memory(imports);
|
|
958
1360
|
|
|
959
|
-
module
|
|
960
|
-
|
|
961
|
-
try {
|
|
962
|
-
result = arg0 instanceof Uint8Array;
|
|
963
|
-
} catch (_) {
|
|
964
|
-
result = false;
|
|
1361
|
+
if (!(module instanceof WebAssembly.Module)) {
|
|
1362
|
+
module = new WebAssembly.Module(module);
|
|
965
1363
|
}
|
|
966
|
-
const ret = result;
|
|
967
|
-
return ret;
|
|
968
|
-
};
|
|
969
|
-
|
|
970
|
-
module.exports.__wbg_isArray_a1eab7e0d067391b = function(arg0) {
|
|
971
|
-
const ret = Array.isArray(arg0);
|
|
972
|
-
return ret;
|
|
973
|
-
};
|
|
974
|
-
|
|
975
|
-
module.exports.__wbg_isSafeInteger_343e2beeeece1bb0 = function(arg0) {
|
|
976
|
-
const ret = Number.isSafeInteger(arg0);
|
|
977
|
-
return ret;
|
|
978
|
-
};
|
|
979
1364
|
|
|
980
|
-
|
|
981
|
-
const ret = Symbol.iterator;
|
|
982
|
-
return ret;
|
|
983
|
-
};
|
|
984
|
-
|
|
985
|
-
module.exports.__wbg_keys_5c77a08ddc2fb8a6 = function(arg0) {
|
|
986
|
-
const ret = Object.keys(arg0);
|
|
987
|
-
return ret;
|
|
988
|
-
};
|
|
1365
|
+
const instance = new WebAssembly.Instance(module, imports);
|
|
989
1366
|
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
return ret;
|
|
993
|
-
};
|
|
994
|
-
|
|
995
|
-
module.exports.__wbg_length_e2d2a49132c1b256 = function(arg0) {
|
|
996
|
-
const ret = arg0.length;
|
|
997
|
-
return ret;
|
|
998
|
-
};
|
|
999
|
-
|
|
1000
|
-
module.exports.__wbg_log_245868b4b99cdf20 = function(arg0) {
|
|
1001
|
-
console.log(...arg0);
|
|
1002
|
-
};
|
|
1003
|
-
|
|
1004
|
-
module.exports.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
|
1005
|
-
const ret = arg0.msCrypto;
|
|
1006
|
-
return ret;
|
|
1007
|
-
};
|
|
1367
|
+
return __wbg_finalize_init(instance, module);
|
|
1368
|
+
}
|
|
1008
1369
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
return ret;
|
|
1012
|
-
};
|
|
1370
|
+
async function __wbg_init(module_or_path) {
|
|
1371
|
+
if (wasm !== undefined) return wasm;
|
|
1013
1372
|
|
|
1014
|
-
module.exports.__wbg_new_018dcc2d6c8c2f6a = function() { return handleError(function () {
|
|
1015
|
-
const ret = new Headers();
|
|
1016
|
-
return ret;
|
|
1017
|
-
}, arguments) };
|
|
1018
1373
|
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
try {
|
|
1026
|
-
return __wbg_adapter_244(a, state0.b, arg0, arg1);
|
|
1027
|
-
} finally {
|
|
1028
|
-
state0.a = a;
|
|
1029
|
-
}
|
|
1030
|
-
};
|
|
1031
|
-
const ret = new Promise(cb0);
|
|
1032
|
-
return ret;
|
|
1033
|
-
} finally {
|
|
1034
|
-
state0.a = state0.b = 0;
|
|
1374
|
+
if (typeof module_or_path !== 'undefined') {
|
|
1375
|
+
if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
|
|
1376
|
+
({module_or_path} = module_or_path)
|
|
1377
|
+
} else {
|
|
1378
|
+
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
|
|
1379
|
+
}
|
|
1035
1380
|
}
|
|
1036
|
-
};
|
|
1037
|
-
|
|
1038
|
-
module.exports.__wbg_new_31a97dac4f10fab7 = function(arg0) {
|
|
1039
|
-
const ret = new Date(arg0);
|
|
1040
|
-
return ret;
|
|
1041
|
-
};
|
|
1042
|
-
|
|
1043
|
-
module.exports.__wbg_new_405e22f390576ce2 = function() {
|
|
1044
|
-
const ret = new Object();
|
|
1045
|
-
return ret;
|
|
1046
|
-
};
|
|
1047
|
-
|
|
1048
|
-
module.exports.__wbg_new_5e0be73521bc8c17 = function() {
|
|
1049
|
-
const ret = new Map();
|
|
1050
|
-
return ret;
|
|
1051
|
-
};
|
|
1052
|
-
|
|
1053
|
-
module.exports.__wbg_new_78feb108b6472713 = function() {
|
|
1054
|
-
const ret = new Array();
|
|
1055
|
-
return ret;
|
|
1056
|
-
};
|
|
1057
|
-
|
|
1058
|
-
module.exports.__wbg_new_a12002a7f91c75be = function(arg0) {
|
|
1059
|
-
const ret = new Uint8Array(arg0);
|
|
1060
|
-
return ret;
|
|
1061
|
-
};
|
|
1062
|
-
|
|
1063
|
-
module.exports.__wbg_new_e25e5aab09ff45db = function() { return handleError(function () {
|
|
1064
|
-
const ret = new AbortController();
|
|
1065
|
-
return ret;
|
|
1066
|
-
}, arguments) };
|
|
1067
|
-
|
|
1068
|
-
module.exports.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
|
1069
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1070
|
-
return ret;
|
|
1071
|
-
};
|
|
1072
|
-
|
|
1073
|
-
module.exports.__wbg_newwithargs_ab6ffe8cd6c19c04 = function(arg0, arg1, arg2, arg3) {
|
|
1074
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1075
|
-
return ret;
|
|
1076
|
-
};
|
|
1077
|
-
|
|
1078
|
-
module.exports.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(arg0, arg1, arg2) {
|
|
1079
|
-
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
1080
|
-
return ret;
|
|
1081
|
-
};
|
|
1082
|
-
|
|
1083
|
-
module.exports.__wbg_newwithlength_a381634e90c276d4 = function(arg0) {
|
|
1084
|
-
const ret = new Uint8Array(arg0 >>> 0);
|
|
1085
|
-
return ret;
|
|
1086
|
-
};
|
|
1087
|
-
|
|
1088
|
-
module.exports.__wbg_newwithstrandinit_06c535e0a867c635 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1089
|
-
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1090
|
-
return ret;
|
|
1091
|
-
}, arguments) };
|
|
1092
|
-
|
|
1093
|
-
module.exports.__wbg_next_25feadfc0913fea9 = function(arg0) {
|
|
1094
|
-
const ret = arg0.next;
|
|
1095
|
-
return ret;
|
|
1096
|
-
};
|
|
1097
|
-
|
|
1098
|
-
module.exports.__wbg_next_6574e1a8a62d1055 = function() { return handleError(function (arg0) {
|
|
1099
|
-
const ret = arg0.next();
|
|
1100
|
-
return ret;
|
|
1101
|
-
}, arguments) };
|
|
1102
|
-
|
|
1103
|
-
module.exports.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
|
1104
|
-
const ret = arg0.node;
|
|
1105
|
-
return ret;
|
|
1106
|
-
};
|
|
1107
|
-
|
|
1108
|
-
module.exports.__wbg_policyevaluationerror_new = function(arg0) {
|
|
1109
|
-
const ret = PolicyEvaluationError.__wrap(arg0);
|
|
1110
|
-
return ret;
|
|
1111
|
-
};
|
|
1112
|
-
|
|
1113
|
-
module.exports.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
|
1114
|
-
const ret = arg0.process;
|
|
1115
|
-
return ret;
|
|
1116
|
-
};
|
|
1117
|
-
|
|
1118
|
-
module.exports.__wbg_push_737cfc8c1432c2c6 = function(arg0, arg1) {
|
|
1119
|
-
const ret = arg0.push(arg1);
|
|
1120
|
-
return ret;
|
|
1121
|
-
};
|
|
1122
1381
|
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
};
|
|
1126
|
-
|
|
1127
|
-
module.exports.__wbg_queueMicrotask_d3219def82552485 = function(arg0) {
|
|
1128
|
-
const ret = arg0.queueMicrotask;
|
|
1129
|
-
return ret;
|
|
1130
|
-
};
|
|
1131
|
-
|
|
1132
|
-
module.exports.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
1133
|
-
arg0.randomFillSync(arg1);
|
|
1134
|
-
}, arguments) };
|
|
1135
|
-
|
|
1136
|
-
module.exports.__wbg_require_60cc747a6bc5215a = function() { return handleError(function () {
|
|
1137
|
-
const ret = module.require;
|
|
1138
|
-
return ret;
|
|
1139
|
-
}, arguments) };
|
|
1140
|
-
|
|
1141
|
-
module.exports.__wbg_resolve_4851785c9c5f573d = function(arg0) {
|
|
1142
|
-
const ret = Promise.resolve(arg0);
|
|
1143
|
-
return ret;
|
|
1144
|
-
};
|
|
1145
|
-
|
|
1146
|
-
module.exports.__wbg_setTimeout_ca12ead8b48245e2 = function(arg0, arg1) {
|
|
1147
|
-
const ret = setTimeout(arg0, arg1);
|
|
1148
|
-
return ret;
|
|
1149
|
-
};
|
|
1150
|
-
|
|
1151
|
-
module.exports.__wbg_set_37837023f3d740e8 = function(arg0, arg1, arg2) {
|
|
1152
|
-
arg0[arg1 >>> 0] = arg2;
|
|
1153
|
-
};
|
|
1154
|
-
|
|
1155
|
-
module.exports.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1156
|
-
arg0[arg1] = arg2;
|
|
1157
|
-
};
|
|
1158
|
-
|
|
1159
|
-
module.exports.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) {
|
|
1160
|
-
arg0.set(arg1, arg2 >>> 0);
|
|
1161
|
-
};
|
|
1162
|
-
|
|
1163
|
-
module.exports.__wbg_set_8fc6bf8a5b1071d1 = function(arg0, arg1, arg2) {
|
|
1164
|
-
const ret = arg0.set(arg1, arg2);
|
|
1165
|
-
return ret;
|
|
1166
|
-
};
|
|
1167
|
-
|
|
1168
|
-
module.exports.__wbg_set_bb8cecf6a62b9f46 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1169
|
-
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1170
|
-
return ret;
|
|
1171
|
-
}, arguments) };
|
|
1172
|
-
|
|
1173
|
-
module.exports.__wbg_setbody_5923b78a95eedf29 = function(arg0, arg1) {
|
|
1174
|
-
arg0.body = arg1;
|
|
1175
|
-
};
|
|
1176
|
-
|
|
1177
|
-
module.exports.__wbg_setcredentials_c3a22f1cd105a2c6 = function(arg0, arg1) {
|
|
1178
|
-
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1179
|
-
};
|
|
1180
|
-
|
|
1181
|
-
module.exports.__wbg_setheaders_834c0bdb6a8949ad = function(arg0, arg1) {
|
|
1182
|
-
arg0.headers = arg1;
|
|
1183
|
-
};
|
|
1184
|
-
|
|
1185
|
-
module.exports.__wbg_setmethod_3c5280fe5d890842 = function(arg0, arg1, arg2) {
|
|
1186
|
-
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1187
|
-
};
|
|
1188
|
-
|
|
1189
|
-
module.exports.__wbg_setmode_5dc300b865044b65 = function(arg0, arg1) {
|
|
1190
|
-
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1191
|
-
};
|
|
1192
|
-
|
|
1193
|
-
module.exports.__wbg_setsignal_75b21ef3a81de905 = function(arg0, arg1) {
|
|
1194
|
-
arg0.signal = arg1;
|
|
1195
|
-
};
|
|
1196
|
-
|
|
1197
|
-
module.exports.__wbg_signal_aaf9ad74119f20a4 = function(arg0) {
|
|
1198
|
-
const ret = arg0.signal;
|
|
1199
|
-
return ret;
|
|
1200
|
-
};
|
|
1201
|
-
|
|
1202
|
-
module.exports.__wbg_static_accessor_GLOBAL_88a902d13a557d07 = function() {
|
|
1203
|
-
const ret = typeof global === 'undefined' ? null : global;
|
|
1204
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1205
|
-
};
|
|
1206
|
-
|
|
1207
|
-
module.exports.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0 = function() {
|
|
1208
|
-
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1209
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1210
|
-
};
|
|
1211
|
-
|
|
1212
|
-
module.exports.__wbg_static_accessor_SELF_37c5d418e4bf5819 = function() {
|
|
1213
|
-
const ret = typeof self === 'undefined' ? null : self;
|
|
1214
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1215
|
-
};
|
|
1216
|
-
|
|
1217
|
-
module.exports.__wbg_static_accessor_WINDOW_5de37043a91a9c40 = function() {
|
|
1218
|
-
const ret = typeof window === 'undefined' ? null : window;
|
|
1219
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1220
|
-
};
|
|
1221
|
-
|
|
1222
|
-
module.exports.__wbg_status_f6360336ca686bf0 = function(arg0) {
|
|
1223
|
-
const ret = arg0.status;
|
|
1224
|
-
return ret;
|
|
1225
|
-
};
|
|
1226
|
-
|
|
1227
|
-
module.exports.__wbg_stringify_f7ed6987935b4a24 = function() { return handleError(function (arg0) {
|
|
1228
|
-
const ret = JSON.stringify(arg0);
|
|
1229
|
-
return ret;
|
|
1230
|
-
}, arguments) };
|
|
1231
|
-
|
|
1232
|
-
module.exports.__wbg_subarray_aa9065fa9dc5df96 = function(arg0, arg1, arg2) {
|
|
1233
|
-
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1234
|
-
return ret;
|
|
1235
|
-
};
|
|
1236
|
-
|
|
1237
|
-
module.exports.__wbg_text_7805bea50de2af49 = function() { return handleError(function (arg0) {
|
|
1238
|
-
const ret = arg0.text();
|
|
1239
|
-
return ret;
|
|
1240
|
-
}, arguments) };
|
|
1241
|
-
|
|
1242
|
-
module.exports.__wbg_then_44b73946d2fb3e7d = function(arg0, arg1) {
|
|
1243
|
-
const ret = arg0.then(arg1);
|
|
1244
|
-
return ret;
|
|
1245
|
-
};
|
|
1246
|
-
|
|
1247
|
-
module.exports.__wbg_then_48b406749878a531 = function(arg0, arg1, arg2) {
|
|
1248
|
-
const ret = arg0.then(arg1, arg2);
|
|
1249
|
-
return ret;
|
|
1250
|
-
};
|
|
1251
|
-
|
|
1252
|
-
module.exports.__wbg_trace_8fa9ac2274ea7420 = function(arg0) {
|
|
1253
|
-
console.trace(...arg0);
|
|
1254
|
-
};
|
|
1255
|
-
|
|
1256
|
-
module.exports.__wbg_url_ae10c34ca209681d = function(arg0, arg1) {
|
|
1257
|
-
const ret = arg1.url;
|
|
1258
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1259
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1260
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1261
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1262
|
-
};
|
|
1263
|
-
|
|
1264
|
-
module.exports.__wbg_value_cd1ffa7b1ab794f1 = function(arg0) {
|
|
1265
|
-
const ret = arg0.value;
|
|
1266
|
-
return ret;
|
|
1267
|
-
};
|
|
1268
|
-
|
|
1269
|
-
module.exports.__wbg_versions_c01dfd4722a88165 = function(arg0) {
|
|
1270
|
-
const ret = arg0.versions;
|
|
1271
|
-
return ret;
|
|
1272
|
-
};
|
|
1273
|
-
|
|
1274
|
-
module.exports.__wbg_warn_ba4bf5118b457d45 = function(arg0) {
|
|
1275
|
-
console.warn(...arg0);
|
|
1276
|
-
};
|
|
1277
|
-
|
|
1278
|
-
module.exports.__wbindgen_bigint_from_i64 = function(arg0) {
|
|
1279
|
-
const ret = arg0;
|
|
1280
|
-
return ret;
|
|
1281
|
-
};
|
|
1282
|
-
|
|
1283
|
-
module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
1284
|
-
const ret = BigInt.asUintN(64, arg0);
|
|
1285
|
-
return ret;
|
|
1286
|
-
};
|
|
1287
|
-
|
|
1288
|
-
module.exports.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
|
|
1289
|
-
const v = arg1;
|
|
1290
|
-
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
1291
|
-
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
1292
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1293
|
-
};
|
|
1294
|
-
|
|
1295
|
-
module.exports.__wbindgen_boolean_get = function(arg0) {
|
|
1296
|
-
const v = arg0;
|
|
1297
|
-
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
|
|
1298
|
-
return ret;
|
|
1299
|
-
};
|
|
1300
|
-
|
|
1301
|
-
module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
1302
|
-
const obj = arg0.original;
|
|
1303
|
-
if (obj.cnt-- == 1) {
|
|
1304
|
-
obj.a = 0;
|
|
1305
|
-
return true;
|
|
1382
|
+
if (typeof module_or_path === 'undefined') {
|
|
1383
|
+
module_or_path = new URL('cedarling_wasm_bg.wasm', import.meta.url);
|
|
1306
1384
|
}
|
|
1307
|
-
const
|
|
1308
|
-
return ret;
|
|
1309
|
-
};
|
|
1310
|
-
|
|
1311
|
-
module.exports.__wbindgen_closure_wrapper3637 = function(arg0, arg1, arg2) {
|
|
1312
|
-
const ret = makeMutClosure(arg0, arg1, 467, __wbg_adapter_50);
|
|
1313
|
-
return ret;
|
|
1314
|
-
};
|
|
1385
|
+
const imports = __wbg_get_imports();
|
|
1315
1386
|
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
};
|
|
1320
|
-
|
|
1321
|
-
module.exports.__wbindgen_debug_string = function(arg0, arg1) {
|
|
1322
|
-
const ret = debugString(arg1);
|
|
1323
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1324
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1325
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1326
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1327
|
-
};
|
|
1328
|
-
|
|
1329
|
-
module.exports.__wbindgen_error_new = function(arg0, arg1) {
|
|
1330
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
1331
|
-
return ret;
|
|
1332
|
-
};
|
|
1333
|
-
|
|
1334
|
-
module.exports.__wbindgen_in = function(arg0, arg1) {
|
|
1335
|
-
const ret = arg0 in arg1;
|
|
1336
|
-
return ret;
|
|
1337
|
-
};
|
|
1338
|
-
|
|
1339
|
-
module.exports.__wbindgen_init_externref_table = function() {
|
|
1340
|
-
const table = wasm.__wbindgen_export_4;
|
|
1341
|
-
const offset = table.grow(4);
|
|
1342
|
-
table.set(0, undefined);
|
|
1343
|
-
table.set(offset + 0, undefined);
|
|
1344
|
-
table.set(offset + 1, null);
|
|
1345
|
-
table.set(offset + 2, true);
|
|
1346
|
-
table.set(offset + 3, false);
|
|
1347
|
-
;
|
|
1348
|
-
};
|
|
1349
|
-
|
|
1350
|
-
module.exports.__wbindgen_is_bigint = function(arg0) {
|
|
1351
|
-
const ret = typeof(arg0) === 'bigint';
|
|
1352
|
-
return ret;
|
|
1353
|
-
};
|
|
1354
|
-
|
|
1355
|
-
module.exports.__wbindgen_is_function = function(arg0) {
|
|
1356
|
-
const ret = typeof(arg0) === 'function';
|
|
1357
|
-
return ret;
|
|
1358
|
-
};
|
|
1359
|
-
|
|
1360
|
-
module.exports.__wbindgen_is_object = function(arg0) {
|
|
1361
|
-
const val = arg0;
|
|
1362
|
-
const ret = typeof(val) === 'object' && val !== null;
|
|
1363
|
-
return ret;
|
|
1364
|
-
};
|
|
1365
|
-
|
|
1366
|
-
module.exports.__wbindgen_is_string = function(arg0) {
|
|
1367
|
-
const ret = typeof(arg0) === 'string';
|
|
1368
|
-
return ret;
|
|
1369
|
-
};
|
|
1370
|
-
|
|
1371
|
-
module.exports.__wbindgen_is_undefined = function(arg0) {
|
|
1372
|
-
const ret = arg0 === undefined;
|
|
1373
|
-
return ret;
|
|
1374
|
-
};
|
|
1375
|
-
|
|
1376
|
-
module.exports.__wbindgen_jsval_eq = function(arg0, arg1) {
|
|
1377
|
-
const ret = arg0 === arg1;
|
|
1378
|
-
return ret;
|
|
1379
|
-
};
|
|
1380
|
-
|
|
1381
|
-
module.exports.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
1382
|
-
const ret = arg0 == arg1;
|
|
1383
|
-
return ret;
|
|
1384
|
-
};
|
|
1385
|
-
|
|
1386
|
-
module.exports.__wbindgen_memory = function() {
|
|
1387
|
-
const ret = wasm.memory;
|
|
1388
|
-
return ret;
|
|
1389
|
-
};
|
|
1390
|
-
|
|
1391
|
-
module.exports.__wbindgen_number_get = function(arg0, arg1) {
|
|
1392
|
-
const obj = arg1;
|
|
1393
|
-
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
1394
|
-
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1395
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1396
|
-
};
|
|
1397
|
-
|
|
1398
|
-
module.exports.__wbindgen_number_new = function(arg0) {
|
|
1399
|
-
const ret = arg0;
|
|
1400
|
-
return ret;
|
|
1401
|
-
};
|
|
1402
|
-
|
|
1403
|
-
module.exports.__wbindgen_string_get = function(arg0, arg1) {
|
|
1404
|
-
const obj = arg1;
|
|
1405
|
-
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1406
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1407
|
-
var len1 = WASM_VECTOR_LEN;
|
|
1408
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1409
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1410
|
-
};
|
|
1411
|
-
|
|
1412
|
-
module.exports.__wbindgen_string_new = function(arg0, arg1) {
|
|
1413
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
|
1414
|
-
return ret;
|
|
1415
|
-
};
|
|
1416
|
-
|
|
1417
|
-
module.exports.__wbindgen_throw = function(arg0, arg1) {
|
|
1418
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1419
|
-
};
|
|
1387
|
+
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
|
|
1388
|
+
module_or_path = fetch(module_or_path);
|
|
1389
|
+
}
|
|
1420
1390
|
|
|
1421
|
-
|
|
1422
|
-
const bytes = require('fs').readFileSync(path);
|
|
1391
|
+
__wbg_init_memory(imports);
|
|
1423
1392
|
|
|
1424
|
-
const
|
|
1425
|
-
const wasmInstance = new WebAssembly.Instance(wasmModule, imports);
|
|
1426
|
-
wasm = wasmInstance.exports;
|
|
1427
|
-
module.exports.__wasm = wasm;
|
|
1393
|
+
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
|
1428
1394
|
|
|
1429
|
-
|
|
1395
|
+
return __wbg_finalize_init(instance, module);
|
|
1396
|
+
}
|
|
1430
1397
|
|
|
1398
|
+
export { initSync };
|
|
1399
|
+
export default __wbg_init;
|