Sign in
chromium
/
devtools
/
devtools-frontend
/
40fcb9a9aae81ac1df2c19dee467ab3a4cf4088b
/
.
/
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
;