UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

7 lines (5 loc) • 200 B
import { SchedulerLike } from '../types'; import { isFunction } from './isFunction'; export function isScheduler(value: any): value is SchedulerLike { return value && isFunction(value.schedule); }