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