Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/be0f47f3a515b01b16d168ee1fc60945f36a4b71113d4a105060f8304838683bfa64befd209b7ce2a0c6e00f4a4a17ab565bbec9fcff5a2f387975f4081251
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

8 lines
No EOL
313 B
Text

import { asyncScheduler } from '../scheduler/async';
import { delayWhen } from './delayWhen';
import { timer } from '../observable/timer';
export function delay(due, scheduler = asyncScheduler) {
const duration = timer(due, scheduler);
return delayWhen(() => duration);
}
//# sourceMappingURL=delay.js.map