Rocky_Mountain_Vending/.pnpm-store/v10/files/53/7e248b80484a1cd405e33482b254067ad9e577980775d582ee37e3b8582bbc91747f5f326da603075cb181614dd0d5844457ae56479027fdf2e81d15988f60
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

6 lines
200 B
Text

import { SchedulerLike } from '../types';
import { isFunction } from './isFunction';
export function isScheduler(value: any): value is SchedulerLike {
return value && isFunction(value.schedule);
}