Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/94cf85aca4199c2d86b33a31237c16d5c93a111065c5f0134040a9aa267188e30d655b98b7c9ad271e0e5dab60892aa9289ccb8c2d342e1162662d89f456e3
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
413 B
Text

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