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);
}