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