blob: 873041fcf071356fdd4f3ede74bb2b949d3a3c0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
console.log("[WORKER] started", globalThis.location.toString(), globalThis);
globalThis.onmessage = function(e) {
const { type, message } = e.data;
if (type === "log-in-worker") {
// Printing `e` so we can check that we have an object and not a stringified version
console.log("[WORKER]", message, e);
}
};
|