source: trip-planner-front/node_modules/rxjs/src/internal/util/isScheduler.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 174 bytes
Line 
1import { SchedulerLike } from '../types';
2
3export function isScheduler(value: any): value is SchedulerLike {
4 return value && typeof (<any>value).schedule === 'function';
5}
Note: See TracBrowser for help on using the repository browser.