Sign in
chromium
/
devtools
/
devtools-frontend
/
d5a3755f19aa248cffbcf61f1628362aaa6c0377
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_isObject.js
blob: 308c65e04ee3d03c474ca54ba7a9a558aecd3739 [
file
] [
log
] [
blame
]
function
_isObject
(
x
)
{
return
Object
.
prototype
.
toString
.
call
(
x
)
===
'[object Object]'
;
}
module
.
exports
=
_isObject
;