fix: console
This commit is contained in:
parent
1f132bdfbd
commit
f3fc5aeb6a
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export const getUnsafeWindow = (): Window => {
|
||||||
return window.eval('window') as Window
|
return window.eval('window') as Window
|
||||||
}
|
}
|
||||||
|
|
||||||
export const console: Console = window.console // Object.is(window.console, unsafeWindow.console) == false
|
export const console: Console = (window || global).console // Object.is(window.console, unsafeWindow.console) == false
|
||||||
|
|
||||||
export const windowOpen: Window['open'] = (...args): Window | null => {
|
export const windowOpen: Window['open'] = (...args): Window | null => {
|
||||||
return window.open(...args) // Object.is(window.open, unsafeWindow.open) == false
|
return window.open(...args) // Object.is(window.open, unsafeWindow.open) == false
|
||||||
|
|
Loading…
Reference in a new issue