Skip to content

Commit

Permalink
Deploying to gh-pages from @ ecef974 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Sep 5, 2024
1 parent ea7d56b commit fac201d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 17 deletions.
Binary file removed 829fcd71082175c1677c.module.wasm
Binary file not shown.
44 changes: 30 additions & 14 deletions bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ var webpackExports = typeof Symbol === "function" ? Symbol("webpack exports") : "__webpack_exports__";
/******/ var webpackError = typeof Symbol === "function" ? Symbol("webpack error") : "__webpack_error__";
/******/ var resolveQueue = (queue) => {
/******/ if(queue && !queue.d) {
/******/ if(queue && queue.d < 1) {
/******/ queue.d = 1;
/******/ queue.forEach((fn) => (fn.r--));
/******/ queue.forEach((fn) => (fn.r-- ? fn.r++ : fn()));
Expand Down Expand Up @@ -86,7 +86,7 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ }));
/******/ __webpack_require__.a = (module, body, hasAwait) => {
/******/ var queue;
/******/ hasAwait && ((queue = []).d = 1);
/******/ hasAwait && ((queue = []).d = -1);
/******/ var depQueues = new Set();
/******/ var exports = module.exports;
/******/ var currentDeps;
Expand Down Expand Up @@ -114,7 +114,7 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ });
/******/ return fn.r ? promise : getResult();
/******/ }, (err) => ((err ? reject(promise[webpackError] = err) : outerResolve(exports)), resolveQueue(queue)));
/******/ queue && (queue.d = 0);
/******/ queue && queue.d < 0 && (queue.d = 0);
/******/ };
/******/ })();
/******/
Expand Down Expand Up @@ -194,6 +194,7 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ }
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
/******/
/******/ script.src = url;
/******/ }
/******/ inProgress[url] = [done];
Expand All @@ -206,7 +207,7 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ script.parentNode && script.parentNode.removeChild(script);
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
/******/ if(prev) return prev(event);
/******/ };
/******/ }
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
/******/ script.onload = onScriptComplete.bind(null, script.onload);
Expand All @@ -229,14 +230,26 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ (() => {
/******/ __webpack_require__.v = (exports, wasmModuleId, wasmModuleHash, importsObj) => {
/******/ var req = fetch(__webpack_require__.p + "" + wasmModuleHash + ".module.wasm");
/******/ if (typeof WebAssembly.instantiateStreaming === 'function') {
/******/ return WebAssembly.instantiateStreaming(req, importsObj)
/******/ .then((res) => (Object.assign(exports, res.instance.exports)));
/******/ }
/******/ return req
/******/ var fallback = () => (req
/******/ .then((x) => (x.arrayBuffer()))
/******/ .then((bytes) => (WebAssembly.instantiate(bytes, importsObj)))
/******/ .then((res) => (Object.assign(exports, res.instance.exports)));
/******/ .then((res) => (Object.assign(exports, res.instance.exports))));
/******/ return req.then((res) => {
/******/ if (typeof WebAssembly.instantiateStreaming === "function") {
/******/ return WebAssembly.instantiateStreaming(res, importsObj)
/******/ .then(
/******/ (res) => (Object.assign(exports, res.instance.exports)),
/******/ (e) => {
/******/ if(res.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);
/******/ return fallback();
/******/ }
/******/ throw e;
/******/ }
/******/ );
/******/ }
/******/ return fallback();
/******/ });
/******/ };
/******/ })();
/******/
Expand All @@ -246,11 +259,14 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
/******/ var document = __webpack_require__.g.document;
/******/ if (!scriptUrl && document) {
/******/ if (document.currentScript)
/******/ scriptUrl = document.currentScript.src
/******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
/******/ scriptUrl = document.currentScript.src;
/******/ if (!scriptUrl) {
/******/ var scripts = document.getElementsByTagName("script");
/******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src
/******/ if(scripts.length) {
/******/ var i = scripts.length - 1;
/******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
/******/ }
/******/ }
/******/ }
/******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
Expand Down Expand Up @@ -305,7 +321,7 @@ eval("// A dependency graph that contains any wasm must all be imported\n// asyn
/******/ }
/******/ };
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
/******/ } else installedChunks[chunkId] = 0;
/******/ }
/******/ }
/******/ }
/******/ };
Expand Down
Binary file added d2c57c9d9fe81b0d396d.module.wasm
Binary file not shown.
Loading

0 comments on commit fac201d

Please sign in to comment.