Sign in
chromium
/
devtools
/
devtools-frontend
/
795b8d034574da8737f2ee9ff4f94de6d000a9a4
/
.
/
node_modules
/
ramda
/
es
/
internal
/
_isFunction.js
blob: de7c2328401fd5eecb8d62a2f3877779793e96f7 [
file
] [
log
] [
blame
]
export
default
function
_isFunction
(
x
)
{
var
type
=
Object
.
prototype
.
toString
.
call
(
x
);
return
type
===
'[object Function]'
||
type
===
'[object AsyncFunction]'
||
type
===
'[object GeneratorFunction]'
||
type
===
'[object AsyncGeneratorFunction]'
;
}