Rocky_Mountain_Vending/.pnpm-store/v10/files/bb/3bb57ca3850ea29446a004e7bbbbcaee2d4afef6f7cb9a30fd6c09ad5a4b26dbded4e2a50bb1f3a8cd81b7b9b6c957484ab156e7583e1d112062c956a1b6d2
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
352 B
Text

import { asyncScheduler } from '../scheduler/async';
import { throttle } from './throttle';
import { timer } from '../observable/timer';
export function throttleTime(duration, scheduler = asyncScheduler, config) {
const duration$ = timer(duration, scheduler);
return throttle(() => duration$, config);
}
//# sourceMappingURL=throttleTime.js.map