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