Web Workers don't have `window` object but they have `self` (which is available in regular windows as well).
2 lines
46 B
JavaScript
2 lines
46 B
JavaScript
typeof global === "undefined" ? self : global
|