Rocky_Mountain_Vending/.pnpm-store/v10/files/34/aa528ddb2421929559c4a426eeb836d2a4c165cbe2064d86acd62b89177948bd7b568f06db1dad4f4395235d04606fcb98ebe6ae3282c6b08738819b70002d
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

9 lines
No EOL
284 B
Text

import { asyncScheduler } from '../scheduler/async';
import { timer } from './timer';
export function interval(period = 0, scheduler = asyncScheduler) {
if (period < 0) {
period = 0;
}
return timer(period, period, scheduler);
}
//# sourceMappingURL=interval.js.map