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