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