Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/4367
/
.
/
node_modules
/
engine.io-client
/
lib
/
globalThis.browser.js
blob: 11b0f28136f6e8e603352c8a22030092018b1d83 [
file
] [
edit
]
module
.
exports
=
(
function
()
{
if
(
typeof
self
!==
'undefined'
)
{
return
self
;
}
else
if
(
typeof
window
!==
'undefined'
)
{
return
window
;
}
else
{
return
Function
(
'return this'
)();
// eslint-disable-line no-new-func
}
})();