File size: 200 Bytes
bc20498 |
1 2 3 4 5 6 7 |
import { SchedulerLike } from '../types';
import { isFunction } from './isFunction';
export function isScheduler(value: any): value is SchedulerLike {
return value && isFunction(value.schedule);
}
|