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