aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/lib/ts/truncate.worker.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--app/src/lib/ts/truncate.worker.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/src/lib/ts/truncate.worker.ts b/app/src/lib/ts/truncate.worker.ts
index eaa65fe..9ddf63c 100644
--- a/app/src/lib/ts/truncate.worker.ts
+++ b/app/src/lib/ts/truncate.worker.ts
@@ -7,5 +7,3 @@ onmessage = async (message: MessageEvent<TruncateRequest>) => {
const truncated = buffer.slice(0, message.data.size);
postMessage({ file: truncated } as TruncateResponse);
};
-
-console.log('Worker successfully loaded!');