UNPKG

lightfold

Version:

lightweight scaffolding and archiving utility CLI.

6 lines (4 loc) 174 B
import { SchedulerLike } from '../types'; export function isScheduler(value: any): value is SchedulerLike { return value && typeof (<any>value).schedule === 'function'; }