Rocky_Mountain_Vending/.pnpm-store/v10/files/43/c4c0a2281f406cea083234ab92633bc7b7b3bb28da5a869eba586fdd964505ab8f026c47588b488fac5199614434aadd145f4318b284e3157f45f68478be76
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
337 B
Text

import { asyncScheduler } from '../scheduler/async';
import { sample } from './sample';
import { interval } from '../observable/interval';
export function sampleTime(period, scheduler) {
if (scheduler === void 0) { scheduler = asyncScheduler; }
return sample(interval(period, scheduler));
}
//# sourceMappingURL=sampleTime.js.map