Sign in
chromium
/
devtools
/
devtools-frontend
/
de3fcf0a075ed797df8f5490eb00a7404f098a06
/
.
/
node_modules
/
rambda
/
src
/
_internals
/
isObject.js
blob: 720e37e4a492f3642c6a598c2f424c07f261028b [
file
]
import
{
type
}
from
'../type.js'
export
function
isObject
(
input
){
return
type
(
input
)
===
'Object'
}