Code coverage report for src/util/isScheduler.ts

Statements: 100% (3 / 3)      Branches: 100% (2 / 2)      Functions: 100% (1 / 1)      Lines: 100% (2 / 2)      Ignored: none     

All files » src/util/ » isScheduler.ts
1 2 31 664  
export function isScheduler(value: any): boolean {
  return value && typeof value.schedule === 'function';
}