Sign in
chromium
/
devtools
/
devtools-frontend
/
b3cd0a4f0ce68bbba2f63ebed0ec8564643eda2e
/
.
/
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]'
;
}