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
How about enhancing this: var globalEval = eval, global = globalEval('this');
to this: var globalEval = eval, global = typeof window !== 'undefined' ? window : globalEval('this');
I can create a pull request if that helps adoption.
The text was updated successfully, but these errors were encountered:
How about enhancing this:
var globalEval = eval, global = globalEval('this');
to this:
var globalEval = eval, global = typeof window !== 'undefined' ? window : globalEval('this');
I can create a pull request if that helps adoption.
The text was updated successfully, but these errors were encountered: