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