Possible to check of a file is being run as worker?
is there a way to disable calling
main()
if the file is being run as worker2 Replies
you can probably check for existence of
name
https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope/nameDedicatedWorkerGlobalScope.name - Web APIs | MDN
The name read-only property of the
DedicatedWorkerGlobalScope interface returns the name that the
Worker was (optionally) given when it was created. This is the name that
the Worker() constructor can pass to get a reference to
the DedicatedWorkerGlobalScope.
<:cookie_deno:1002977285734932480>