squash
This commit is contained in:
		
							parent
							
								
									828057f05e
								
							
						
					
					
						commit
						153d508fc1
					
				
					 3 changed files with 0 additions and 532 deletions
				
			
		
							
								
								
									
										480
									
								
								dist/index-5695e498a6d6f6f5.js
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										480
									
								
								dist/index-5695e498a6d6f6f5.js
									
										
									
									
										vendored
									
									
								
							|  | @ -1,480 +0,0 @@ | |||
| 
 | ||||
| let wasm; | ||||
| 
 | ||||
| const heap = new Array(32).fill(undefined); | ||||
| 
 | ||||
| heap.push(undefined, null, true, false); | ||||
| 
 | ||||
| function getObject(idx) { return heap[idx]; } | ||||
| 
 | ||||
| let heap_next = heap.length; | ||||
| 
 | ||||
| function addHeapObject(obj) { | ||||
|     if (heap_next === heap.length) heap.push(heap.length + 1); | ||||
|     const idx = heap_next; | ||||
|     heap_next = heap[idx]; | ||||
| 
 | ||||
|     heap[idx] = obj; | ||||
|     return idx; | ||||
| } | ||||
| 
 | ||||
| let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }); | ||||
| 
 | ||||
| cachedTextDecoder.decode(); | ||||
| 
 | ||||
| let cachegetUint8Memory0 = null; | ||||
| function getUint8Memory0() { | ||||
|     if (cachegetUint8Memory0 === null || cachegetUint8Memory0.buffer !== wasm.memory.buffer) { | ||||
|         cachegetUint8Memory0 = new Uint8Array(wasm.memory.buffer); | ||||
|     } | ||||
|     return cachegetUint8Memory0; | ||||
| } | ||||
| 
 | ||||
| function getStringFromWasm0(ptr, len) { | ||||
|     return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); | ||||
| } | ||||
| 
 | ||||
| function dropObject(idx) { | ||||
|     if (idx < 36) return; | ||||
|     heap[idx] = heap_next; | ||||
|     heap_next = idx; | ||||
| } | ||||
| 
 | ||||
| function takeObject(idx) { | ||||
|     const ret = getObject(idx); | ||||
|     dropObject(idx); | ||||
|     return ret; | ||||
| } | ||||
| 
 | ||||
| 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.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; | ||||
| } | ||||
| 
 | ||||
| let WASM_VECTOR_LEN = 0; | ||||
| 
 | ||||
| let cachedTextEncoder = new TextEncoder('utf-8'); | ||||
| 
 | ||||
| const encodeString = (typeof cachedTextEncoder.encodeInto === 'function' | ||||
|     ? function (arg, view) { | ||||
|     return cachedTextEncoder.encodeInto(arg, view); | ||||
| } | ||||
|     : function (arg, view) { | ||||
|     const buf = cachedTextEncoder.encode(arg); | ||||
|     view.set(buf); | ||||
|     return { | ||||
|         read: arg.length, | ||||
|         written: buf.length | ||||
|     }; | ||||
| }); | ||||
| 
 | ||||
| function passStringToWasm0(arg, malloc, realloc) { | ||||
| 
 | ||||
|     if (realloc === undefined) { | ||||
|         const buf = cachedTextEncoder.encode(arg); | ||||
|         const ptr = malloc(buf.length); | ||||
|         getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf); | ||||
|         WASM_VECTOR_LEN = buf.length; | ||||
|         return ptr; | ||||
|     } | ||||
| 
 | ||||
|     let len = arg.length; | ||||
|     let ptr = malloc(len); | ||||
| 
 | ||||
|     const mem = getUint8Memory0(); | ||||
| 
 | ||||
|     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); | ||||
|         const view = getUint8Memory0().subarray(ptr + offset, ptr + len); | ||||
|         const ret = encodeString(arg, view); | ||||
| 
 | ||||
|         offset += ret.written; | ||||
|     } | ||||
| 
 | ||||
|     WASM_VECTOR_LEN = offset; | ||||
|     return ptr; | ||||
| } | ||||
| 
 | ||||
| let cachegetInt32Memory0 = null; | ||||
| function getInt32Memory0() { | ||||
|     if (cachegetInt32Memory0 === null || cachegetInt32Memory0.buffer !== wasm.memory.buffer) { | ||||
|         cachegetInt32Memory0 = new Int32Array(wasm.memory.buffer); | ||||
|     } | ||||
|     return cachegetInt32Memory0; | ||||
| } | ||||
| 
 | ||||
| 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 { | ||||
|             if (--state.cnt === 0) { | ||||
|                 wasm.__wbindgen_export_2.get(state.dtor)(a, state.b); | ||||
| 
 | ||||
|             } else { | ||||
|                 state.a = a; | ||||
|             } | ||||
|         } | ||||
|     }; | ||||
|     real.original = state; | ||||
| 
 | ||||
|     return real; | ||||
| } | ||||
| 
 | ||||
| let stack_pointer = 32; | ||||
| 
 | ||||
| function addBorrowedObject(obj) { | ||||
|     if (stack_pointer == 1) throw new Error('out of js stack'); | ||||
|     heap[--stack_pointer] = obj; | ||||
|     return stack_pointer; | ||||
| } | ||||
| function __wbg_adapter_16(arg0, arg1, arg2) { | ||||
|     try { | ||||
|         wasm._dyn_core__ops__function__FnMut___A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h62558760dc33a565(arg0, arg1, addBorrowedObject(arg2)); | ||||
|     } finally { | ||||
|         heap[stack_pointer++] = undefined; | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| function isLikeNone(x) { | ||||
|     return x === undefined || x === null; | ||||
| } | ||||
| 
 | ||||
| function handleError(f) { | ||||
|     return function () { | ||||
|         try { | ||||
|             return f.apply(this, arguments); | ||||
| 
 | ||||
|         } catch (e) { | ||||
|             wasm.__wbindgen_exn_store(addHeapObject(e)); | ||||
|         } | ||||
|     }; | ||||
| } | ||||
| 
 | ||||
| async function load(module, imports) { | ||||
|     if (typeof Response === 'function' && module instanceof Response) { | ||||
| 
 | ||||
|         if (typeof WebAssembly.instantiateStreaming === 'function') { | ||||
|             try { | ||||
|                 return await WebAssembly.instantiateStreaming(module, imports); | ||||
| 
 | ||||
|             } catch (e) { | ||||
|                 if (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; | ||||
|         } | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| async function init(input) { | ||||
|     if (typeof input === 'undefined') { | ||||
|         input = import.meta.url.replace(/\.js$/, '_bg.wasm'); | ||||
|     } | ||||
|     const imports = {}; | ||||
|     imports.wbg = {}; | ||||
|     imports.wbg.__wbindgen_object_clone_ref = function(arg0) { | ||||
|         var ret = getObject(arg0); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbindgen_is_undefined = function(arg0) { | ||||
|         var ret = getObject(arg0) === undefined; | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbindgen_string_new = function(arg0, arg1) { | ||||
|         var ret = getStringFromWasm0(arg0, arg1); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbindgen_cb_drop = function(arg0) { | ||||
|         const obj = takeObject(arg0).original; | ||||
|         if (obj.cnt-- == 1) { | ||||
|             obj.a = 0; | ||||
|             return true; | ||||
|         } | ||||
|         var ret = false; | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbindgen_object_drop_ref = function(arg0) { | ||||
|         takeObject(arg0); | ||||
|     }; | ||||
|     imports.wbg.__wbg_error_4bb6c2a97407129a = function(arg0, arg1) { | ||||
|         try { | ||||
|             console.error(getStringFromWasm0(arg0, arg1)); | ||||
|         } finally { | ||||
|             wasm.__wbindgen_free(arg0, arg1); | ||||
|         } | ||||
|     }; | ||||
|     imports.wbg.__wbg_new_59cb74e423758ede = function() { | ||||
|         var ret = new Error(); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbg_stack_558ba5917b466edd = function(arg0, arg1) { | ||||
|         var ret = getObject(arg1).stack; | ||||
|         var ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); | ||||
|         var len0 = WASM_VECTOR_LEN; | ||||
|         getInt32Memory0()[arg0 / 4 + 1] = len0; | ||||
|         getInt32Memory0()[arg0 / 4 + 0] = ptr0; | ||||
|     }; | ||||
|     imports.wbg.__wbg_instanceof_Window_adf3196bdc02b386 = function(arg0) { | ||||
|         var ret = getObject(arg0) instanceof Window; | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbg_document_6cc8d0b87c0a99b9 = function(arg0) { | ||||
|         var ret = getObject(arg0).document; | ||||
|         return isLikeNone(ret) ? 0 : addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbg_createElement_5bdf88a5af9f17c5 = handleError(function(arg0, arg1, arg2) { | ||||
|         var ret = getObject(arg0).createElement(getStringFromWasm0(arg1, arg2)); | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_createElementNS_ea14cb45a87a0719 = handleError(function(arg0, arg1, arg2, arg3, arg4) { | ||||
|         var ret = getObject(arg0).createElementNS(arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4)); | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_createTextNode_b3c9e3cb02f83ab5 = function(arg0, arg1, arg2) { | ||||
|         var ret = getObject(arg0).createTextNode(getStringFromWasm0(arg1, arg2)); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbg_querySelector_69fd5cd784bcc892 = handleError(function(arg0, arg1, arg2) { | ||||
|         var ret = getObject(arg0).querySelector(getStringFromWasm0(arg1, arg2)); | ||||
|         return isLikeNone(ret) ? 0 : addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_instanceof_HtmlButtonElement_645b6f9d0d172e00 = function(arg0) { | ||||
|         var ret = getObject(arg0) instanceof HTMLButtonElement; | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbg_settype_98bff8074314478e = function(arg0, arg1, arg2) { | ||||
|         getObject(arg0).type = getStringFromWasm0(arg1, arg2); | ||||
|     }; | ||||
|     imports.wbg.__wbg_instanceof_HtmlTextAreaElement_6c876047bbe08f92 = function(arg0) { | ||||
|         var ret = getObject(arg0) instanceof HTMLTextAreaElement; | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbg_value_91d41b8dbd0b2f0b = function(arg0, arg1) { | ||||
|         var ret = getObject(arg1).value; | ||||
|         var ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); | ||||
|         var len0 = WASM_VECTOR_LEN; | ||||
|         getInt32Memory0()[arg0 / 4 + 1] = len0; | ||||
|         getInt32Memory0()[arg0 / 4 + 0] = ptr0; | ||||
|     }; | ||||
|     imports.wbg.__wbg_setvalue_1012134a2989f3ee = function(arg0, arg1, arg2) { | ||||
|         getObject(arg0).value = getStringFromWasm0(arg1, arg2); | ||||
|     }; | ||||
|     imports.wbg.__wbg_instanceof_HtmlInputElement_aaef9fb14eceaa9b = function(arg0) { | ||||
|         var ret = getObject(arg0) instanceof HTMLInputElement; | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbg_setchecked_1a89c058f5ac906a = function(arg0, arg1) { | ||||
|         getObject(arg0).checked = arg1 !== 0; | ||||
|     }; | ||||
|     imports.wbg.__wbg_settype_4f9e0a597bc38efe = function(arg0, arg1, arg2) { | ||||
|         getObject(arg0).type = getStringFromWasm0(arg1, arg2); | ||||
|     }; | ||||
|     imports.wbg.__wbg_value_bff6f7ef104e077a = function(arg0, arg1) { | ||||
|         var ret = getObject(arg1).value; | ||||
|         var ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); | ||||
|         var len0 = WASM_VECTOR_LEN; | ||||
|         getInt32Memory0()[arg0 / 4 + 1] = len0; | ||||
|         getInt32Memory0()[arg0 / 4 + 0] = ptr0; | ||||
|     }; | ||||
|     imports.wbg.__wbg_setvalue_839acf17e43a847f = function(arg0, arg1, arg2) { | ||||
|         getObject(arg0).value = getStringFromWasm0(arg1, arg2); | ||||
|     }; | ||||
|     imports.wbg.__wbg_addEventListener_f0baf69c9c7425c9 = handleError(function(arg0, arg1, arg2, arg3, arg4) { | ||||
|         getObject(arg0).addEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3), getObject(arg4)); | ||||
|     }); | ||||
|     imports.wbg.__wbg_removeEventListener_9ffcd175e0916270 = handleError(function(arg0, arg1, arg2, arg3, arg4) { | ||||
|         getObject(arg0).removeEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3), arg4 !== 0); | ||||
|     }); | ||||
|     imports.wbg.__wbg_namespaceURI_a4d52538ca0c6bae = function(arg0, arg1) { | ||||
|         var ret = getObject(arg1).namespaceURI; | ||||
|         var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); | ||||
|         var len0 = WASM_VECTOR_LEN; | ||||
|         getInt32Memory0()[arg0 / 4 + 1] = len0; | ||||
|         getInt32Memory0()[arg0 / 4 + 0] = ptr0; | ||||
|     }; | ||||
|     imports.wbg.__wbg_removeAttribute_a705c6de4bb158c4 = handleError(function(arg0, arg1, arg2) { | ||||
|         getObject(arg0).removeAttribute(getStringFromWasm0(arg1, arg2)); | ||||
|     }); | ||||
|     imports.wbg.__wbg_setAttribute_727bdb9763037624 = handleError(function(arg0, arg1, arg2, arg3, arg4) { | ||||
|         getObject(arg0).setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4)); | ||||
|     }); | ||||
|     imports.wbg.__wbg_lastChild_4a41600911ce94c7 = function(arg0) { | ||||
|         var ret = getObject(arg0).lastChild; | ||||
|         return isLikeNone(ret) ? 0 : addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbg_setnodeValue_ec452cd3716fee72 = function(arg0, arg1, arg2) { | ||||
|         getObject(arg0).nodeValue = arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2); | ||||
|     }; | ||||
|     imports.wbg.__wbg_appendChild_77215fd672b162c5 = handleError(function(arg0, arg1) { | ||||
|         var ret = getObject(arg0).appendChild(getObject(arg1)); | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_insertBefore_ea385f1d7ec76e50 = handleError(function(arg0, arg1, arg2) { | ||||
|         var ret = getObject(arg0).insertBefore(getObject(arg1), getObject(arg2)); | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_removeChild_f4829fcd2e376e1b = handleError(function(arg0, arg1) { | ||||
|         var ret = getObject(arg0).removeChild(getObject(arg1)); | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_newnoargs_f3b8a801d5d4b079 = function(arg0, arg1) { | ||||
|         var ret = new Function(getStringFromWasm0(arg0, arg1)); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbg_call_8e95613cc6524977 = handleError(function(arg0, arg1) { | ||||
|         var ret = getObject(arg0).call(getObject(arg1)); | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_is_333329c4a02916de = function(arg0, arg1) { | ||||
|         var ret = Object.is(getObject(arg0), getObject(arg1)); | ||||
|         return ret; | ||||
|     }; | ||||
|     imports.wbg.__wbg_new_3e06d4f36713e4cb = function() { | ||||
|         var ret = new Object(); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
|     imports.wbg.__wbg_globalThis_b9277fc37e201fe5 = handleError(function() { | ||||
|         var ret = globalThis.globalThis; | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_self_07b2f89e82ceb76d = handleError(function() { | ||||
|         var ret = self.self; | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_window_ba85d88572adc0dc = handleError(function() { | ||||
|         var ret = window.window; | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_global_e16303fe83e1d57f = handleError(function() { | ||||
|         var ret = global.global; | ||||
|         return addHeapObject(ret); | ||||
|     }); | ||||
|     imports.wbg.__wbg_set_304f2ec1a3ab3b79 = handleError(function(arg0, arg1, arg2) { | ||||
|         var ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2)); | ||||
|         return ret; | ||||
|     }); | ||||
|     imports.wbg.__wbindgen_debug_string = function(arg0, arg1) { | ||||
|         var ret = debugString(getObject(arg1)); | ||||
|         var ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); | ||||
|         var len0 = WASM_VECTOR_LEN; | ||||
|         getInt32Memory0()[arg0 / 4 + 1] = len0; | ||||
|         getInt32Memory0()[arg0 / 4 + 0] = ptr0; | ||||
|     }; | ||||
|     imports.wbg.__wbindgen_throw = function(arg0, arg1) { | ||||
|         throw new Error(getStringFromWasm0(arg0, arg1)); | ||||
|     }; | ||||
|     imports.wbg.__wbindgen_closure_wrapper1149 = function(arg0, arg1, arg2) { | ||||
|         var ret = makeMutClosure(arg0, arg1, 42, __wbg_adapter_16); | ||||
|         return addHeapObject(ret); | ||||
|     }; | ||||
| 
 | ||||
|     if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) { | ||||
|         input = fetch(input); | ||||
|     } | ||||
| 
 | ||||
|     const { instance, module } = await load(await input, imports); | ||||
| 
 | ||||
|     wasm = instance.exports; | ||||
|     init.__wbindgen_wasm_module = module; | ||||
|     wasm.__wbindgen_start(); | ||||
|     return wasm; | ||||
| } | ||||
| 
 | ||||
| export default init; | ||||
| 
 | ||||
							
								
								
									
										
											BIN
										
									
								
								dist/index-5695e498a6d6f6f5_bg.wasm
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								dist/index-5695e498a6d6f6f5_bg.wasm
									
										
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										52
									
								
								dist/index.html
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										52
									
								
								dist/index.html
									
										
									
									
										vendored
									
									
								
							|  | @ -1,52 +0,0 @@ | |||
| <!DOCTYPE html><html><head> | ||||
|     <meta charset="utf-8"> | ||||
|     <title>gpx.thermokar.st</title> | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
|     <style> | ||||
|       body { | ||||
|         max-width: 35em; | ||||
|         margin: 0 auto; | ||||
|         line-height: 1.5; | ||||
|         font-family: sans-serif; | ||||
|         font-size: large; | ||||
|       } | ||||
|     </style> | ||||
|    | ||||
| <link rel="preload" href="/index-5695e498a6d6f6f5_bg.wasm" as="fetch" type="application/wasm" crossorigin=""> | ||||
| <link rel="modulepreload" href="/index-5695e498a6d6f6f5.js"></head> | ||||
|   <body> | ||||
|     <noscript> | ||||
|       <mark> | ||||
|         This page contains webassembly and javascript content, please enable | ||||
|         javascript in your browser to use this tool. | ||||
|       </mark> | ||||
|     </noscript> | ||||
|    | ||||
| 
 | ||||
| <script type="module">import init from '/index-5695e498a6d6f6f5.js';init('/index-5695e498a6d6f6f5_bg.wasm');</script><script>(function () { | ||||
|     var url = 'ws://' + window.location.host + '/_trunk/ws'; | ||||
|     var poll_interval = 5000; | ||||
|     var reload_upon_connect = () => { | ||||
|         window.setTimeout( | ||||
|             () => { | ||||
|                 // when we successfully reconnect, we'll force a | ||||
|                 // reload (since we presumably lost connection to | ||||
|                 // trunk due to it being killed, so it will have | ||||
|                 // rebuilt on restart) | ||||
|                 var ws = new WebSocket(url); | ||||
|                 ws.onopen = () => window.location.reload(); | ||||
|                 ws.onclose = reload_upon_connect; | ||||
|             }, | ||||
|             poll_interval); | ||||
|     }; | ||||
| 
 | ||||
|     var ws = new WebSocket(url); | ||||
|     ws.onmessage = (ev) => { | ||||
|         const msg = JSON.parse(ev.data); | ||||
|         if (msg.reload) { | ||||
|             window.location.reload(); | ||||
|         } | ||||
|     }; | ||||
|     ws.onclose = reload_upon_connect; | ||||
| })() | ||||
| </script></body></html> | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue