Sign in
chromium
/
devtools
/
devtools-frontend
/
dfd9aa027f150fd39bd27dcdebded17548f6a3f9
/
.
/
node_modules
/
core-js
/
internals
/
is-object.js
blob: dda6e04d273016597de054ee02e13b731b25d86c [
file
]
module
.
exports
=
function
(
it
)
{
return
typeof
it
===
'object'
?
it
!==
null
:
typeof
it
===
'function'
;
};