Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/b5233a7ac35d7310c1d133a2f2be4ede9bb855691191aff592b6fc33304f60a15c59433544faf7c11dad23d20ea1967ef41d47d01abf0cb7bfff289a1f23b7
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
351 B
Text

import { asyncScheduler } from '../scheduler/async';
import { audit } from './audit';
import { timer } from '../observable/timer';
export function auditTime(duration, scheduler) {
if (scheduler === void 0) { scheduler = asyncScheduler; }
return audit(function () { return timer(duration, scheduler); });
}
//# sourceMappingURL=auditTime.js.map