????

Your IP : 3.137.161.250


Current Path : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/rxjs/src/internal/util/
Upload File :
Current File : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/rxjs/src/internal/util/isScheduler.ts

import { SchedulerLike } from '../types';
import { isFunction } from './isFunction';

export function isScheduler(value: any): value is SchedulerLike {
  return value && isFunction(value.schedule);
}