aboutsummaryrefslogtreecommitdiff
path: root/static/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/index.js')
-rw-r--r--static/index.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/static/index.js b/static/index.js
index b2e1b45..8d13c63 100644
--- a/static/index.js
+++ b/static/index.js
@@ -79,7 +79,6 @@ async function loadProgram(js) {
/from\s+"\.\/(.+)"/g,
`from "${href}precompiled/$1"`,
);
- console.log(js1);
const js2 = btoa(unescape(encodeURIComponent(js1)));
const module = await import("data:text/javascript;base64," + js2);
return module.main;