Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
isFunction.ts
blob: 287e8871c8d74c7c29a28bf0e6e708950de77e9b [
file
] [
log
] [
blame
]
export
function
isFunction
(
x
:
any
):
x
is
Function
{
return
typeof
x
===
'function'
;
}