From 17a6c89c093c74f6551e3a8debdc7a9c1a16840e Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Tue, 14 Sep 2021 15:01:36 -0500 Subject: [PATCH] preventing continuing past assertions --- static/src/worker.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/src/worker.js b/static/src/worker.js index 46c2a9d..b2a1df8 100644 --- a/static/src/worker.js +++ b/static/src/worker.js @@ -42,6 +42,7 @@ let import_obj = { exit(code) { self.postMessage({ type: 'terminated' }); self.close(); + while (1) {} }, }, -- 2.25.1