Sign in
chromium
/
devtools
/
devtools-frontend
/
bedbd4f3fe201caedff255ae97fdf875e13063f8
/
.
/
node_modules
/
ramda
/
es
/
internal
/
_isFunction.js
blob: de7c2328401fd5eecb8d62a2f3877779793e96f7 [
file
]
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]'
;
}