1380 lines
55 KiB
JavaScript
1380 lines
55 KiB
JavaScript
let wasm;
|
|
|
|
function addToExternrefTable0(obj) {
|
|
const idx = wasm.__externref_table_alloc();
|
|
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
return idx;
|
|
}
|
|
|
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
? { register: () => {}, unregister: () => {} }
|
|
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
|
|
function debugString(val) {
|
|
// primitive types
|
|
const type = typeof val;
|
|
if (type == 'number' || type == 'boolean' || val == null) {
|
|
return `${val}`;
|
|
}
|
|
if (type == 'string') {
|
|
return `"${val}"`;
|
|
}
|
|
if (type == 'symbol') {
|
|
const description = val.description;
|
|
if (description == null) {
|
|
return 'Symbol';
|
|
} else {
|
|
return `Symbol(${description})`;
|
|
}
|
|
}
|
|
if (type == 'function') {
|
|
const name = val.name;
|
|
if (typeof name == 'string' && name.length > 0) {
|
|
return `Function(${name})`;
|
|
} else {
|
|
return 'Function';
|
|
}
|
|
}
|
|
// objects
|
|
if (Array.isArray(val)) {
|
|
const length = val.length;
|
|
let debug = '[';
|
|
if (length > 0) {
|
|
debug += debugString(val[0]);
|
|
}
|
|
for(let i = 1; i < length; i++) {
|
|
debug += ', ' + debugString(val[i]);
|
|
}
|
|
debug += ']';
|
|
return debug;
|
|
}
|
|
// Test for built-in
|
|
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
let className;
|
|
if (builtInMatches && builtInMatches.length > 1) {
|
|
className = builtInMatches[1];
|
|
} else {
|
|
// Failed to match the standard '[object ClassName]'
|
|
return toString.call(val);
|
|
}
|
|
if (className == 'Object') {
|
|
// we're a user defined class or Object
|
|
// JSON.stringify avoids problems with cycles, and is generally much
|
|
// easier than looping through ownProperties of `val`.
|
|
try {
|
|
return 'Object(' + JSON.stringify(val) + ')';
|
|
} catch (_) {
|
|
return 'Object';
|
|
}
|
|
}
|
|
// errors
|
|
if (val instanceof Error) {
|
|
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
}
|
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
return className;
|
|
}
|
|
|
|
function getArrayU8FromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
}
|
|
|
|
let cachedDataViewMemory0 = null;
|
|
function getDataViewMemory0() {
|
|
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
}
|
|
return cachedDataViewMemory0;
|
|
}
|
|
|
|
function getStringFromWasm0(ptr, len) {
|
|
ptr = ptr >>> 0;
|
|
return decodeText(ptr, len);
|
|
}
|
|
|
|
let cachedUint8ArrayMemory0 = null;
|
|
function getUint8ArrayMemory0() {
|
|
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
}
|
|
return cachedUint8ArrayMemory0;
|
|
}
|
|
|
|
function handleError(f, args) {
|
|
try {
|
|
return f.apply(this, args);
|
|
} catch (e) {
|
|
const idx = addToExternrefTable0(e);
|
|
wasm.__wbindgen_exn_store(idx);
|
|
}
|
|
}
|
|
|
|
function isLikeNone(x) {
|
|
return x === undefined || x === null;
|
|
}
|
|
|
|
function makeClosure(arg0, arg1, dtor, f) {
|
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
const real = (...args) => {
|
|
|
|
// First up with a closure we increment the internal reference
|
|
// count. This ensures that the Rust closure environment won't
|
|
// be deallocated while we're invoking it.
|
|
state.cnt++;
|
|
try {
|
|
return f(state.a, state.b, ...args);
|
|
} finally {
|
|
real._wbg_cb_unref();
|
|
}
|
|
};
|
|
real._wbg_cb_unref = () => {
|
|
if (--state.cnt === 0) {
|
|
state.dtor(state.a, state.b);
|
|
state.a = 0;
|
|
CLOSURE_DTORS.unregister(state);
|
|
}
|
|
};
|
|
CLOSURE_DTORS.register(real, state, state);
|
|
return real;
|
|
}
|
|
|
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
const real = (...args) => {
|
|
|
|
// First up with a closure we increment the internal reference
|
|
// count. This ensures that the Rust closure environment won't
|
|
// be deallocated while we're invoking it.
|
|
state.cnt++;
|
|
const a = state.a;
|
|
state.a = 0;
|
|
try {
|
|
return f(a, state.b, ...args);
|
|
} finally {
|
|
state.a = a;
|
|
real._wbg_cb_unref();
|
|
}
|
|
};
|
|
real._wbg_cb_unref = () => {
|
|
if (--state.cnt === 0) {
|
|
state.dtor(state.a, state.b);
|
|
state.a = 0;
|
|
CLOSURE_DTORS.unregister(state);
|
|
}
|
|
};
|
|
CLOSURE_DTORS.register(real, state, state);
|
|
return real;
|
|
}
|
|
|
|
function passStringToWasm0(arg, malloc, realloc) {
|
|
if (realloc === undefined) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
const ptr = malloc(buf.length, 1) >>> 0;
|
|
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
WASM_VECTOR_LEN = buf.length;
|
|
return ptr;
|
|
}
|
|
|
|
let len = arg.length;
|
|
let ptr = malloc(len, 1) >>> 0;
|
|
|
|
const mem = getUint8ArrayMemory0();
|
|
|
|
let offset = 0;
|
|
|
|
for (; offset < len; offset++) {
|
|
const code = arg.charCodeAt(offset);
|
|
if (code > 0x7F) break;
|
|
mem[ptr + offset] = code;
|
|
}
|
|
if (offset !== len) {
|
|
if (offset !== 0) {
|
|
arg = arg.slice(offset);
|
|
}
|
|
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
|
|
offset += ret.written;
|
|
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
}
|
|
|
|
WASM_VECTOR_LEN = offset;
|
|
return ptr;
|
|
}
|
|
|
|
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
cachedTextDecoder.decode();
|
|
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
let numBytesDecoded = 0;
|
|
function decodeText(ptr, len) {
|
|
numBytesDecoded += len;
|
|
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
cachedTextDecoder.decode();
|
|
numBytesDecoded = len;
|
|
}
|
|
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
}
|
|
|
|
const cachedTextEncoder = new TextEncoder();
|
|
|
|
if (!('encodeInto' in cachedTextEncoder)) {
|
|
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
const buf = cachedTextEncoder.encode(arg);
|
|
view.set(buf);
|
|
return {
|
|
read: arg.length,
|
|
written: buf.length
|
|
};
|
|
}
|
|
}
|
|
|
|
let WASM_VECTOR_LEN = 0;
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__h8bdd9acf1f2be76e(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__h8bdd9acf1f2be76e(arg0, arg1, arg2);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__h05925073b93f234e(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__h05925073b93f234e(arg0, arg1, arg2);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__h38a19eb650734da2(arg0, arg1) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__h38a19eb650734da2(arg0, arg1);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__hc5c04b5ba49ccfb9(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__hc5c04b5ba49ccfb9(arg0, arg1, arg2);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__h98129968257c0d8d(arg0, arg1) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__h98129968257c0d8d(arg0, arg1);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__h434eab62b75e8fac(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__h434eab62b75e8fac(arg0, arg1, arg2);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__h389ed5d417f52944(arg0, arg1, arg2) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__h389ed5d417f52944(arg0, arg1, arg2);
|
|
}
|
|
|
|
function wasm_bindgen__convert__closures_____invoke__ha942a44eff540ade(arg0, arg1, arg2, arg3) {
|
|
wasm.wasm_bindgen__convert__closures_____invoke__ha942a44eff540ade(arg0, arg1, arg2, arg3);
|
|
}
|
|
|
|
const __wbindgen_enum_ReadableStreamType = ["bytes"];
|
|
|
|
const __wbindgen_enum_ShadowRootMode = ["open", "closed"];
|
|
|
|
const __wbindgen_enum_WorkerType = ["classic", "module"];
|
|
|
|
const IntoUnderlyingByteSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
? { register: () => {}, unregister: () => {} }
|
|
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr >>> 0, 1));
|
|
|
|
const IntoUnderlyingSinkFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
? { register: () => {}, unregister: () => {} }
|
|
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr >>> 0, 1));
|
|
|
|
const IntoUnderlyingSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
? { register: () => {}, unregister: () => {} }
|
|
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr >>> 0, 1));
|
|
|
|
export class IntoUnderlyingByteSource {
|
|
__destroy_into_raw() {
|
|
const ptr = this.__wbg_ptr;
|
|
this.__wbg_ptr = 0;
|
|
IntoUnderlyingByteSourceFinalization.unregister(this);
|
|
return ptr;
|
|
}
|
|
free() {
|
|
const ptr = this.__destroy_into_raw();
|
|
wasm.__wbg_intounderlyingbytesource_free(ptr, 0);
|
|
}
|
|
/**
|
|
* @returns {number}
|
|
*/
|
|
get autoAllocateChunkSize() {
|
|
const ret = wasm.intounderlyingbytesource_autoAllocateChunkSize(this.__wbg_ptr);
|
|
return ret >>> 0;
|
|
}
|
|
/**
|
|
* @param {ReadableByteStreamController} controller
|
|
* @returns {Promise<any>}
|
|
*/
|
|
pull(controller) {
|
|
const ret = wasm.intounderlyingbytesource_pull(this.__wbg_ptr, controller);
|
|
return ret;
|
|
}
|
|
/**
|
|
* @param {ReadableByteStreamController} controller
|
|
*/
|
|
start(controller) {
|
|
wasm.intounderlyingbytesource_start(this.__wbg_ptr, controller);
|
|
}
|
|
/**
|
|
* @returns {ReadableStreamType}
|
|
*/
|
|
get type() {
|
|
const ret = wasm.intounderlyingbytesource_type(this.__wbg_ptr);
|
|
return __wbindgen_enum_ReadableStreamType[ret];
|
|
}
|
|
cancel() {
|
|
const ptr = this.__destroy_into_raw();
|
|
wasm.intounderlyingbytesource_cancel(ptr);
|
|
}
|
|
}
|
|
if (Symbol.dispose) IntoUnderlyingByteSource.prototype[Symbol.dispose] = IntoUnderlyingByteSource.prototype.free;
|
|
|
|
export class IntoUnderlyingSink {
|
|
__destroy_into_raw() {
|
|
const ptr = this.__wbg_ptr;
|
|
this.__wbg_ptr = 0;
|
|
IntoUnderlyingSinkFinalization.unregister(this);
|
|
return ptr;
|
|
}
|
|
free() {
|
|
const ptr = this.__destroy_into_raw();
|
|
wasm.__wbg_intounderlyingsink_free(ptr, 0);
|
|
}
|
|
/**
|
|
* @param {any} reason
|
|
* @returns {Promise<any>}
|
|
*/
|
|
abort(reason) {
|
|
const ptr = this.__destroy_into_raw();
|
|
const ret = wasm.intounderlyingsink_abort(ptr, reason);
|
|
return ret;
|
|
}
|
|
/**
|
|
* @returns {Promise<any>}
|
|
*/
|
|
close() {
|
|
const ptr = this.__destroy_into_raw();
|
|
const ret = wasm.intounderlyingsink_close(ptr);
|
|
return ret;
|
|
}
|
|
/**
|
|
* @param {any} chunk
|
|
* @returns {Promise<any>}
|
|
*/
|
|
write(chunk) {
|
|
const ret = wasm.intounderlyingsink_write(this.__wbg_ptr, chunk);
|
|
return ret;
|
|
}
|
|
}
|
|
if (Symbol.dispose) IntoUnderlyingSink.prototype[Symbol.dispose] = IntoUnderlyingSink.prototype.free;
|
|
|
|
export class IntoUnderlyingSource {
|
|
__destroy_into_raw() {
|
|
const ptr = this.__wbg_ptr;
|
|
this.__wbg_ptr = 0;
|
|
IntoUnderlyingSourceFinalization.unregister(this);
|
|
return ptr;
|
|
}
|
|
free() {
|
|
const ptr = this.__destroy_into_raw();
|
|
wasm.__wbg_intounderlyingsource_free(ptr, 0);
|
|
}
|
|
/**
|
|
* @param {ReadableStreamDefaultController} controller
|
|
* @returns {Promise<any>}
|
|
*/
|
|
pull(controller) {
|
|
const ret = wasm.intounderlyingsource_pull(this.__wbg_ptr, controller);
|
|
return ret;
|
|
}
|
|
cancel() {
|
|
const ptr = this.__destroy_into_raw();
|
|
wasm.intounderlyingsource_cancel(ptr);
|
|
}
|
|
}
|
|
if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderlyingSource.prototype.free;
|
|
|
|
const EXPECTED_RESPONSE_TYPES = new Set(['basic', 'cors', 'default']);
|
|
|
|
async function __wbg_load(module, imports) {
|
|
if (typeof Response === 'function' && module instanceof Response) {
|
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
try {
|
|
return await WebAssembly.instantiateStreaming(module, imports);
|
|
} catch (e) {
|
|
const validResponse = module.ok && EXPECTED_RESPONSE_TYPES.has(module.type);
|
|
|
|
if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
|
|
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);
|
|
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
|
|
const bytes = await module.arrayBuffer();
|
|
return await WebAssembly.instantiate(bytes, imports);
|
|
} else {
|
|
const instance = await WebAssembly.instantiate(module, imports);
|
|
|
|
if (instance instanceof WebAssembly.Instance) {
|
|
return { instance, module };
|
|
} else {
|
|
return instance;
|
|
}
|
|
}
|
|
}
|
|
|
|
function __wbg_get_imports() {
|
|
const imports = {};
|
|
imports.wbg = {};
|
|
imports.wbg.__wbg_Error_52673b7de5a0ca89 = function(arg0, arg1) {
|
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_Number_2d1dcfcf4ec51736 = function(arg0) {
|
|
const ret = Number(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_Split_396ed1f0bec74903 = function(arg0) {
|
|
const ret = globalThis.Split(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
const ret = String(arg1);
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg___wbindgen_bigint_get_as_i64_6e32f5e6aff02e1d = function(arg0, arg1) {
|
|
const v = arg1;
|
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
};
|
|
imports.wbg.__wbg___wbindgen_boolean_get_dea25b33882b895b = function(arg0) {
|
|
const v = arg0;
|
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_debug_string_adfb662ae34724b6 = function(arg0, arg1) {
|
|
const ret = debugString(arg1);
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg___wbindgen_in_0d3e1e8f0c669317 = function(arg0, arg1) {
|
|
const ret = arg0 in arg1;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_bigint_0e1a2e3f55cfae27 = function(arg0) {
|
|
const ret = typeof(arg0) === 'bigint';
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_falsy_7b9692021c137978 = function(arg0) {
|
|
const ret = !arg0;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_function_8d400b8b1af978cd = function(arg0) {
|
|
const ret = typeof(arg0) === 'function';
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_null_dfda7d66506c95b5 = function(arg0) {
|
|
const ret = arg0 === null;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_object_ce774f3490692386 = function(arg0) {
|
|
const val = arg0;
|
|
const ret = typeof(val) === 'object' && val !== null;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_string_704ef9c8fc131030 = function(arg0) {
|
|
const ret = typeof(arg0) === 'string';
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_is_undefined_f6b95eab589e0269 = function(arg0) {
|
|
const ret = arg0 === undefined;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_jsval_eq_b6101cc9cef1fe36 = function(arg0, arg1) {
|
|
const ret = arg0 === arg1;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_jsval_loose_eq_766057600fdd1b0d = function(arg0, arg1) {
|
|
const ret = arg0 == arg1;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg___wbindgen_number_get_9619185a74197f95 = function(arg0, arg1) {
|
|
const obj = arg1;
|
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
};
|
|
imports.wbg.__wbg___wbindgen_string_get_a2a31e16edf96e42 = function(arg0, arg1) {
|
|
const obj = arg1;
|
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg___wbindgen_throw_dd24417ed36fc46e = function(arg0, arg1) {
|
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
};
|
|
imports.wbg.__wbg__wbg_cb_unref_87dfb5aaa0cbcea7 = function(arg0) {
|
|
arg0._wbg_cb_unref();
|
|
};
|
|
imports.wbg.__wbg_addCommand_86418b442c0a4ae0 = function(arg0, arg1) {
|
|
arg0.addCommand(arg1);
|
|
};
|
|
imports.wbg.__wbg_addEventListener_6a82629b3d430a48 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
arg0.addEventListener(getStringFromWasm0(arg1, arg2), arg3);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_appendChild_7465eba84213c75f = function() { return handleError(function (arg0, arg1) {
|
|
const ret = arg0.appendChild(arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_arrow_b1235a4e14c4c82d = function(arg0) {
|
|
const ret = globalThis.FloatingUIDOM.arrow(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_assign_069e610fa5e6ee90 = function(arg0, arg1) {
|
|
const ret = Object.assign(arg0, arg1);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_attachShadow_e963a502f4796039 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = arg0.attachShadow(arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_autoUpdate_6c349a10b11a9e16 = function(arg0, arg1, arg2, arg3) {
|
|
const ret = globalThis.FloatingUIDOM.autoUpdate(arg0, arg1, arg2, arg3);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_body_544738f8b03aef13 = function(arg0) {
|
|
const ret = arg0.body;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_buffer_6cb2fecb1f253d71 = function(arg0) {
|
|
const ret = arg0.buffer;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_byobRequest_f8e3517f5f8ad284 = function(arg0) {
|
|
const ret = arg0.byobRequest;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_byteLength_faa9938885bdeee6 = function(arg0) {
|
|
const ret = arg0.byteLength;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_byteOffset_3868b6a19ba01dea = function(arg0) {
|
|
const ret = arg0.byteOffset;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_call_3020136f7a2d6e44 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = arg0.call(arg1, arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_call_78f94eb02ec7f9b2 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
const ret = arg0.call(arg1, arg2, arg3, arg4);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_call_abb4ff46ce38be40 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = arg0.call(arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_cancelBubble_3ab876913f65579a = function(arg0) {
|
|
const ret = arg0.cancelBubble;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_clearSelection_26e0a970dc233cee = function(arg0) {
|
|
arg0.clearSelection();
|
|
};
|
|
imports.wbg.__wbg_click_3a8e35c38329dd3a = function(arg0) {
|
|
arg0.click();
|
|
};
|
|
imports.wbg.__wbg_clipboard_c210ce30f20907dd = function(arg0) {
|
|
const ret = arg0.clipboard;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_cloneNode_c9c45b24b171a776 = function() { return handleError(function (arg0) {
|
|
const ret = arg0.cloneNode();
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_close_0af5661bf3d335f2 = function() { return handleError(function (arg0) {
|
|
arg0.close();
|
|
}, arguments) };
|
|
imports.wbg.__wbg_close_3ec111e7b23d94d8 = function() { return handleError(function (arg0) {
|
|
arg0.close();
|
|
}, arguments) };
|
|
imports.wbg.__wbg_composedPath_c6de3259e6ae48ad = function(arg0) {
|
|
const ret = arg0.composedPath();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_computePosition_f48ba13b52899a83 = function(arg0, arg1, arg2) {
|
|
const ret = globalThis.FloatingUIDOM.computePosition(arg0, arg1, arg2);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_contains_457d2fc195838bfa = function(arg0, arg1) {
|
|
const ret = arg0.contains(arg1);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_createComment_89db599aa930ef8a = function(arg0, arg1, arg2) {
|
|
const ret = arg0.createComment(getStringFromWasm0(arg1, arg2));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_createElementNS_e7c12bbd579529e2 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
const ret = arg0.createElementNS(arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_createElement_da4ed2b219560fc6 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = arg0.createElement(getStringFromWasm0(arg1, arg2));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_createObjectURL_7d9f7f8f41373850 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = URL.createObjectURL(arg1);
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_createTextNode_0cf8168f7646a5d2 = function(arg0, arg1, arg2) {
|
|
const ret = arg0.createTextNode(getStringFromWasm0(arg1, arg2));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_data_8bf4ae669a78a688 = function(arg0) {
|
|
const ret = arg0.data;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_debug_9d0c87ddda3dc485 = function(arg0) {
|
|
console.debug(arg0);
|
|
};
|
|
imports.wbg.__wbg_deleteProperty_da180bf2624d16d6 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = Reflect.deleteProperty(arg0, arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_destroy_aabed702274413e3 = function(arg0) {
|
|
arg0.destroy();
|
|
};
|
|
imports.wbg.__wbg_documentElement_39f40310398a4cba = function(arg0) {
|
|
const ret = arg0.documentElement;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_document_5b745e82ba551ca5 = function(arg0) {
|
|
const ret = arg0.document;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_done_62ea16af4ce34b24 = function(arg0) {
|
|
const ret = arg0.done;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_edit_f7577b4721ca51e9 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = ace.edit(getStringFromWasm0(arg0, arg1), arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_enqueue_a7e6b1ee87963aad = function() { return handleError(function (arg0, arg1) {
|
|
arg0.enqueue(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_entries_83c79938054e065f = function(arg0) {
|
|
const ret = Object.entries(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_error_62f3219d830ab5b7 = function(arg0) {
|
|
const ret = arg0.error;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
|
|
let deferred0_0;
|
|
let deferred0_1;
|
|
try {
|
|
deferred0_0 = arg0;
|
|
deferred0_1 = arg1;
|
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
} finally {
|
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
}
|
|
};
|
|
imports.wbg.__wbg_error_7bc7d576a6aaf855 = function(arg0) {
|
|
console.error(arg0);
|
|
};
|
|
imports.wbg.__wbg_files_aa1f009258eadae6 = function(arg0) {
|
|
const ret = arg0.files;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_flip_e10feb78ad4cd9c6 = function() {
|
|
const ret = globalThis.FloatingUIDOM.flip();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_getSelectedText_6ffbc2a6c8a17e8c = function(arg0, arg1) {
|
|
const ret = arg1.getSelectedText();
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_getValue_1980c5c792d81953 = function(arg0, arg1) {
|
|
const ret = arg1.getValue();
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_get_331085331950b4f1 = function(arg0, arg1, arg2, arg3) {
|
|
const ret = arg1.get(getStringFromWasm0(arg2, arg3));
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_get_6b7bd52aca3f9671 = function(arg0, arg1) {
|
|
const ret = arg0[arg1 >>> 0];
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_get_89bca58298277b24 = function(arg0, arg1) {
|
|
const ret = arg0[arg1 >>> 0];
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_get_ae7d64d412108c8f = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
const ret = arg1[getStringFromWasm0(arg2, arg3)];
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
var len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_get_af9dab7e9603ea93 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = Reflect.get(arg0, arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
|
|
const ret = arg0[arg1];
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_host_3f3d16f21f257e93 = function(arg0) {
|
|
const ret = arg0.host;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_href_0a387dfdb6abe7e5 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = arg1.href;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_href_18222dace6ab46cf = function(arg0, arg1) {
|
|
const ret = arg1.href;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_info_ce6bcc489c22f6f0 = function(arg0) {
|
|
console.info(arg0);
|
|
};
|
|
imports.wbg.__wbg_insertBefore_93e77c32aeae9657 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = arg0.insertBefore(arg1, arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_instanceof_ArrayBuffer_f3320d2419cd0355 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof ArrayBuffer;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_Element_6f7ba982258cfc0f = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof Element;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_HtmlAnchorElement_2ac07b5cf25eac0c = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof HTMLAnchorElement;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_Node_8af87d5d16d153d3 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof Node;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_ShadowRoot_acbbcc2231ef8a7b = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof ShadowRoot;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_Uint8Array_da54ccc9d3e09434 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof Uint8Array;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_instanceof_Window_b5cf7783caa68180 = function(arg0) {
|
|
let result;
|
|
try {
|
|
result = arg0 instanceof Window;
|
|
} catch (_) {
|
|
result = false;
|
|
}
|
|
const ret = result;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_isArray_51fd9e6422c0a395 = function(arg0) {
|
|
const ret = Array.isArray(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_isSafeInteger_ae7d3f054d55fa16 = function(arg0) {
|
|
const ret = Number.isSafeInteger(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_iterator_27b7c8b35ab3e86b = function() {
|
|
const ret = Symbol.iterator;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_key_505d33c50799526a = function(arg0, arg1) {
|
|
const ret = arg1.key;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_lengthComputable_a7de113e79abf040 = function(arg0) {
|
|
const ret = arg0.lengthComputable;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_length_22ac23eaec9d8053 = function(arg0) {
|
|
const ret = arg0.length;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_length_5548a3a9b927d0af = function(arg0) {
|
|
const ret = arg0.length;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_length_d45040a40c570362 = function(arg0) {
|
|
const ret = arg0.length;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_loaded_0c0796e81274bc3f = function(arg0) {
|
|
const ret = arg0.loaded;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_localStorage_e7a9e9fee8fc608d = function() { return handleError(function (arg0) {
|
|
const ret = arg0.localStorage;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_location_962e75c1c1b3ebed = function(arg0) {
|
|
const ret = arg0.location;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_log_1d990106d99dacb7 = function(arg0) {
|
|
console.log(arg0);
|
|
};
|
|
imports.wbg.__wbg_matchMedia_29904c79dbaba90b = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = arg0.matchMedia(getStringFromWasm0(arg1, arg2));
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_matches_9cef9b7c722bd7c8 = function(arg0) {
|
|
const ret = arg0.matches;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_message_a4e9a39ee8f92b17 = function(arg0, arg1) {
|
|
const ret = arg1.message;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_name_13bb9dc8b6e6e67c = function(arg0, arg1) {
|
|
const ret = arg1.name;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_navigator_b49edef831236138 = function(arg0) {
|
|
const ret = arg0.navigator;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_111dde64cffa8ba1 = function() { return handleError(function () {
|
|
const ret = new FileReader();
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_1ba21ce319a06297 = function() {
|
|
const ret = new Object();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_25f239778d6112b9 = function() {
|
|
const ret = new Array();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_3205bc992762cf38 = function() { return handleError(function () {
|
|
const ret = new URLSearchParams();
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_6421f6084cc5bc5a = function(arg0) {
|
|
const ret = new Uint8Array(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_79cb6b4c6069a31e = function() { return handleError(function (arg0, arg1) {
|
|
const ret = new URL(getStringFromWasm0(arg0, arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
|
|
const ret = new Error();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_df1173567d5ff028 = function(arg0, arg1) {
|
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_ff12d2b041fb48f1 = function(arg0, arg1) {
|
|
try {
|
|
var state0 = {a: arg0, b: arg1};
|
|
var cb0 = (arg0, arg1) => {
|
|
const a = state0.a;
|
|
state0.a = 0;
|
|
try {
|
|
return wasm_bindgen__convert__closures_____invoke__ha942a44eff540ade(a, state0.b, arg0, arg1);
|
|
} finally {
|
|
state0.a = a;
|
|
}
|
|
};
|
|
const ret = new Promise(cb0);
|
|
return ret;
|
|
} finally {
|
|
state0.a = state0.b = 0;
|
|
}
|
|
};
|
|
imports.wbg.__wbg_new_no_args_cb138f77cf6151ee = function(arg0, arg1) {
|
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_with_byte_offset_and_length_d85c3da1fd8df149 = function(arg0, arg1, arg2) {
|
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_new_with_options_2978557c2c268ef3 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = new Worker(getStringFromWasm0(arg0, arg1), arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_with_str_dea1b77a8c2f6d7d = function() { return handleError(function (arg0, arg1) {
|
|
const ret = new URLSearchParams(getStringFromWasm0(arg0, arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_new_with_u8_array_sequence_be72615d80b1c50b = function() { return handleError(function (arg0) {
|
|
const ret = new Blob(arg0);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_next_138a17bbf04e926c = function(arg0) {
|
|
const ret = arg0.next;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_next_3cfe5c0fe2a4cc53 = function() { return handleError(function (arg0) {
|
|
const ret = arg0.next();
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_offset_07f8c0939e84fc2e = function(arg0) {
|
|
const ret = globalThis.FloatingUIDOM.offset(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_onchange_a0716e7811cd3910 = function(arg0) {
|
|
const ret = arg0.onchange;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_parentNode_6caea653ea9f3e23 = function(arg0) {
|
|
const ret = arg0.parentNode;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_postMessage_07504dbe15265d5c = function() { return handleError(function (arg0, arg1) {
|
|
arg0.postMessage(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_prototypesetcall_dfe9b766cdc1f1fd = function(arg0, arg1, arg2) {
|
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
};
|
|
imports.wbg.__wbg_push_7d9be8f38fc13975 = function(arg0, arg1) {
|
|
const ret = arg0.push(arg1);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_queueMicrotask_9b549dfce8865860 = function(arg0) {
|
|
const ret = arg0.queueMicrotask;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_queueMicrotask_fca69f5bfad613a5 = function(arg0) {
|
|
queueMicrotask(arg0);
|
|
};
|
|
imports.wbg.__wbg_readAsArrayBuffer_0aca937439be3197 = function() { return handleError(function (arg0, arg1) {
|
|
arg0.readAsArrayBuffer(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeAttribute_96e791ceeb22d591 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
arg0.removeAttribute(getStringFromWasm0(arg1, arg2));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeChild_e269b93f63c5ba71 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = arg0.removeChild(arg1);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeEventListener_565e273024b68b75 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
arg0.removeEventListener(getStringFromWasm0(arg1, arg2), arg3);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_removeProperty_c2e16faee2834bef = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
const ret = arg1.removeProperty(getStringFromWasm0(arg2, arg3));
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_remove_32f69ffabcbc4072 = function(arg0) {
|
|
arg0.remove();
|
|
};
|
|
imports.wbg.__wbg_remove_e0441e385f51d1e9 = function(arg0) {
|
|
arg0.remove();
|
|
};
|
|
imports.wbg.__wbg_require_d5530344dea59ee4 = function() { return handleError(function (arg0, arg1) {
|
|
const ret = ace.require(getStringFromWasm0(arg0, arg1));
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_resolve_fd5bfbaa4ce36e1e = function(arg0) {
|
|
const ret = Promise.resolve(arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_respond_9f7fc54636c4a3af = function() { return handleError(function (arg0, arg1) {
|
|
arg0.respond(arg1 >>> 0);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_result_893437a1eaacc4df = function() { return handleError(function (arg0) {
|
|
const ret = arg0.result;
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_revokeObjectURL_88db3468842ff09e = function() { return handleError(function (arg0, arg1) {
|
|
URL.revokeObjectURL(getStringFromWasm0(arg0, arg1));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_search_856af82f9dccb2ef = function() { return handleError(function (arg0, arg1) {
|
|
const ret = arg1.search;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setAttribute_34747dd193f45828 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
arg0.setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setItem_1167ad38996d6426 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
arg0.setItem(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setKeyboardHandler_564952d0734682bf = function() { return handleError(function (arg0, arg1) {
|
|
arg0.setKeyboardHandler(arg1);
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setTheme_cf647dec06f82fcb = function() { return handleError(function (arg0, arg1, arg2) {
|
|
arg0.setTheme(getStringFromWasm0(arg1, arg2));
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setTimeout_06477c23d31efef1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = arg0.setTimeout(arg1, arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_setValue_e5b4756c5549bdb3 = function(arg0, arg1, arg2) {
|
|
let deferred0_0;
|
|
let deferred0_1;
|
|
try {
|
|
deferred0_0 = arg1;
|
|
deferred0_1 = arg2;
|
|
arg0.setValue(getStringFromWasm0(arg1, arg2));
|
|
} finally {
|
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
}
|
|
};
|
|
imports.wbg.__wbg_set_169e13b608078b7b = function(arg0, arg1, arg2) {
|
|
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
|
};
|
|
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
arg0[arg1] = arg2;
|
|
};
|
|
imports.wbg.__wbg_set_781438a03c0c3c81 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
const ret = Reflect.set(arg0, arg1, arg2);
|
|
return ret;
|
|
}, arguments) };
|
|
imports.wbg.__wbg_set_796fc3442673454b = function(arg0, arg1, arg2, arg3, arg4) {
|
|
arg0.set(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
};
|
|
imports.wbg.__wbg_set_7df433eea03a5c14 = function(arg0, arg1, arg2) {
|
|
arg0[arg1 >>> 0] = arg2;
|
|
};
|
|
imports.wbg.__wbg_set_className_52411a7e4782668d = function(arg0, arg1, arg2) {
|
|
arg0.className = getStringFromWasm0(arg1, arg2);
|
|
};
|
|
imports.wbg.__wbg_set_download_8403fd66b94b25a2 = function(arg0, arg1, arg2) {
|
|
arg0.download = getStringFromWasm0(arg1, arg2);
|
|
};
|
|
imports.wbg.__wbg_set_href_25c4bcdcbfb4459b = function(arg0, arg1, arg2) {
|
|
arg0.href = getStringFromWasm0(arg1, arg2);
|
|
};
|
|
imports.wbg.__wbg_set_mode_d655ca23f856dbe8 = function(arg0, arg1) {
|
|
arg0.mode = __wbindgen_enum_ShadowRootMode[arg1];
|
|
};
|
|
imports.wbg.__wbg_set_nodeValue_997d7696f2c5d4bd = function(arg0, arg1, arg2) {
|
|
arg0.nodeValue = arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2);
|
|
};
|
|
imports.wbg.__wbg_set_onchange_ceed61dcb89e1290 = function(arg0, arg1) {
|
|
arg0.onchange = arg1;
|
|
};
|
|
imports.wbg.__wbg_set_onerror_63939cdd10d24fe8 = function(arg0, arg1) {
|
|
arg0.onerror = arg1;
|
|
};
|
|
imports.wbg.__wbg_set_onload_3ff2f72af5cc911d = function(arg0, arg1) {
|
|
arg0.onload = arg1;
|
|
};
|
|
imports.wbg.__wbg_set_onmessage_deb94985de696ac7 = function(arg0, arg1) {
|
|
arg0.onmessage = arg1;
|
|
};
|
|
imports.wbg.__wbg_set_onprogress_d792d4592aba4cad = function(arg0, arg1) {
|
|
arg0.onprogress = arg1;
|
|
};
|
|
imports.wbg.__wbg_set_search_cbba29f94329f296 = function(arg0, arg1, arg2) {
|
|
arg0.search = getStringFromWasm0(arg1, arg2);
|
|
};
|
|
imports.wbg.__wbg_set_type_c2eb2929316959f4 = function(arg0, arg1) {
|
|
arg0.type = __wbindgen_enum_WorkerType[arg1];
|
|
};
|
|
imports.wbg.__wbg_set_value_8f487a4f7d71c024 = function(arg0, arg1, arg2) {
|
|
arg0.value = getStringFromWasm0(arg1, arg2);
|
|
};
|
|
imports.wbg.__wbg_shift_6c1346a806f7a644 = function() {
|
|
const ret = globalThis.FloatingUIDOM.shift();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
|
|
const ret = arg1.stack;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_static_accessor_GLOBAL_769e6b65d6557335 = function() {
|
|
const ret = typeof global === 'undefined' ? null : global;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_60cf02db4de8e1c1 = function() {
|
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_static_accessor_SELF_08f5a74c69739274 = function() {
|
|
const ret = typeof self === 'undefined' ? null : self;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_static_accessor_WINDOW_a8924b26aa92d024 = function() {
|
|
const ret = typeof window === 'undefined' ? null : window;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_style_521a717da50e53c6 = function(arg0) {
|
|
const ret = arg0.style;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_target_0e3e05a6263c37a0 = function(arg0) {
|
|
const ret = arg0.target;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_then_429f7caf1026411d = function(arg0, arg1, arg2) {
|
|
const ret = arg0.then(arg1, arg2);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_then_4f95312d68691235 = function(arg0, arg1) {
|
|
const ret = arg0.then(arg1);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_toString_f07112df359c997f = function(arg0) {
|
|
const ret = arg0.toString();
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_total_ed2c751b8e303a8f = function(arg0) {
|
|
const ret = arg0.total;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_value_57b7b035e117f7ee = function(arg0) {
|
|
const ret = arg0.value;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbg_value_5ea6e5ab9f609290 = function(arg0, arg1) {
|
|
const ret = arg1.value;
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
const len1 = WASM_VECTOR_LEN;
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
};
|
|
imports.wbg.__wbg_view_788aaf149deefd2f = function(arg0) {
|
|
const ret = arg0.view;
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
};
|
|
imports.wbg.__wbg_warn_6e567d0d926ff881 = function(arg0) {
|
|
console.warn(arg0);
|
|
};
|
|
imports.wbg.__wbg_writeText_c9776abb6826901c = function(arg0, arg1, arg2) {
|
|
const ret = arg0.writeText(getStringFromWasm0(arg1, arg2));
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_0439d74fb177e761 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 1269, function: Function { arguments: [], shim_idx: 1270, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h97aa846f5cc84d7a, wasm_bindgen__convert__closures_____invoke__h38a19eb650734da2);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_0e0544825ef8642b = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 786, function: Function { arguments: [NamedExternref("KeyboardEvent")], shim_idx: 787, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h16269719f2acd719, wasm_bindgen__convert__closures_____invoke__h05925073b93f234e);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_1726629ebb1eb4bf = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 786, function: Function { arguments: [NamedExternref("MediaQueryList")], shim_idx: 787, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h16269719f2acd719, wasm_bindgen__convert__closures_____invoke__h05925073b93f234e);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_273c1a7ea7ae08c2 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 1264, function: Function { arguments: [], shim_idx: 1265, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h66a7fc3d115140a7, wasm_bindgen__convert__closures_____invoke__h98129968257c0d8d);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_2b6eddd4b7c76cee = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 1286, function: Function { arguments: [NamedExternref("Event")], shim_idx: 1287, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__hb5f9c3392026160b, wasm_bindgen__convert__closures_____invoke__h8bdd9acf1f2be76e);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
// Cast intrinsic for `U64 -> Externref`.
|
|
const ret = BigInt.asUintN(64, arg0);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_48252cd9ff7318c5 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 786, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 787, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h16269719f2acd719, wasm_bindgen__convert__closures_____invoke__h05925073b93f234e);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_675229c5ebdc93ea = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 786, function: Function { arguments: [NamedExternref("Event")], shim_idx: 787, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h16269719f2acd719, wasm_bindgen__convert__closures_____invoke__h05925073b93f234e);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_9dbb1d9a782b3551 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 786, function: Function { arguments: [NamedExternref("ProgressEvent")], shim_idx: 792, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h16269719f2acd719, wasm_bindgen__convert__closures_____invoke__h389ed5d417f52944);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_a3079b19df592af4 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 1269, function: Function { arguments: [NamedExternref("Event")], shim_idx: 1272, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h97aa846f5cc84d7a, wasm_bindgen__convert__closures_____invoke__h434eab62b75e8fac);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_b0a5ac0bd32c1478 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 786, function: Function { arguments: [NamedExternref("MouseEvent")], shim_idx: 787, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h16269719f2acd719, wasm_bindgen__convert__closures_____invoke__h05925073b93f234e);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
// Cast intrinsic for `F64 -> Externref`.
|
|
const ret = arg0;
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_cast_debc643321aae547 = function(arg0, arg1) {
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 1331, function: Function { arguments: [Externref], shim_idx: 1332, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__ha2974c92fa39f26b, wasm_bindgen__convert__closures_____invoke__hc5c04b5ba49ccfb9);
|
|
return ret;
|
|
};
|
|
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
const table = wasm.__wbindgen_externrefs;
|
|
const offset = table.grow(4);
|
|
table.set(0, undefined);
|
|
table.set(offset + 0, undefined);
|
|
table.set(offset + 1, null);
|
|
table.set(offset + 2, true);
|
|
table.set(offset + 3, false);
|
|
};
|
|
|
|
return imports;
|
|
}
|
|
|
|
function __wbg_finalize_init(instance, module) {
|
|
wasm = instance.exports;
|
|
__wbg_init.__wbindgen_wasm_module = module;
|
|
cachedDataViewMemory0 = null;
|
|
cachedUint8ArrayMemory0 = null;
|
|
|
|
|
|
wasm.__wbindgen_start();
|
|
return wasm;
|
|
}
|
|
|
|
function initSync(module) {
|
|
if (wasm !== undefined) return wasm;
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
if (Object.getPrototypeOf(module) === Object.prototype) {
|
|
({module} = module)
|
|
} else {
|
|
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
|
}
|
|
}
|
|
|
|
const imports = __wbg_get_imports();
|
|
if (!(module instanceof WebAssembly.Module)) {
|
|
module = new WebAssembly.Module(module);
|
|
}
|
|
const instance = new WebAssembly.Instance(module, imports);
|
|
return __wbg_finalize_init(instance, module);
|
|
}
|
|
|
|
async function __wbg_init(module_or_path) {
|
|
if (wasm !== undefined) return wasm;
|
|
|
|
|
|
if (typeof module_or_path !== 'undefined') {
|
|
if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
|
|
({module_or_path} = module_or_path)
|
|
} else {
|
|
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
|
|
}
|
|
}
|
|
|
|
if (typeof module_or_path === 'undefined') {
|
|
module_or_path = new URL('app_bg.wasm', import.meta.url);
|
|
}
|
|
const imports = __wbg_get_imports();
|
|
|
|
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
|
|
module_or_path = fetch(module_or_path);
|
|
}
|
|
|
|
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
|
|
|
return __wbg_finalize_init(instance, module);
|
|
}
|
|
|
|
export { initSync };
|
|
export default __wbg_init;
|