Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
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'
;
}