You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Web Workers resolve to the browser.js however window is not defined thus causing an undefined reference.
Using globalThis or self instead of window could allow this file to work in web workers too.
Uncaught ReferenceError: window is not defined
at node_modules/.pnpm/[email protected][email protected]/node_modules/isomorphic-dompurify/browser.js (isomorphic-dompurify.js?v=650fd638:949:22)
The text was updated successfully, but these errors were encountered:
Sure! I would be happy to make a PR.
I need to know the supported browsers to know if globalThis is the best solution (or if typeof window === undefined would be better)
Web Workers resolve to the
browser.js
howeverwindow
is not defined thus causing an undefined reference.Using
globalThis
orself
instead ofwindow
could allow this file to work in web workers too.The text was updated successfully, but these errors were encountered: