Rocky_Mountain_Vending/.pnpm-store/v10/files/44/84a2ce5637b189bc0803ac8fb3c92ef1dfa156b0dc38aa325fa5915cd7b8618b92a45486010620f97bb720e6488911d379d1c4cf6a410e703cc270f4ffacb7
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

7 lines
No EOL
288 B
Text

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