source:
trip-planner-front/node_modules/rxjs/src/internal/util/isScheduler.ts@
fa375fe
Last change on this file since fa375fe was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 174 bytes |
Line | |
---|---|
1 | import { SchedulerLike } from '../types'; |
2 | |
3 | export 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.