Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
devtools
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
isScheduler.ts
blob: 594f195fbfffa374871938ace86c81e5f7b87692 [
file
] [
log
] [
blame
]
import
{
SchedulerLike
}
from
'../types'
;
export
function
isScheduler
(
value
:
any
):
value
is
SchedulerLike
{
return
value
&&
typeof
(<
any
>
value
).
schedule
===
'function'
;
}