Sign in
apache
/
incubator-resilientdb-ResContract
/
a38804e78a872ef90e5cbab1c702c7554a393c9b
/
.
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
isScheduler.ts
blob: f81ee085cab4dca3db2415ae455c22e3ddbc7f0c [
file
] [
log
] [
blame
]
import
{
SchedulerLike
}
from
'../types'
;
import
{
isFunction
}
from
'./isFunction'
;
export
function
isScheduler
(
value
:
any
):
value
is
SchedulerLike
{
return
value
&&
isFunction
(
value
.
schedule
);
}