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
if((typeofprocess=='object'&&typeofrequire==='function')||typeofwindow=='object'||typeofimportScripts=='function')thrownewError('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)');
301
+
if((typeofprocess=='object'&&typeofrequire==='function')||typeofwindow=='object'||typeofWorkerGlobalScope!='undefined')thrownewError('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)');
302
302
#endif
303
303
304
304
#if ENVIRONMENT_MAY_BE_SHELL
@@ -398,7 +398,7 @@ if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) {
398
398
}
399
399
400
400
#if ENVIRONMENT&&ASSERTIONS
401
-
if(!(typeofwindow=='object'||typeofimportScripts=='function'))thrownewError('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)');
401
+
if(!(typeofwindow=='object'||typeofWorkerGlobalScope!='undefined'))thrownewError('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)');
0 commit comments