Rocky_Mountain_Vending/.pnpm-store/v10/files/d6/482f2f1c4207f7e66b20ec7dce8f8cc9a62d0cc87cfd790bb2dce27de19234c3de85e8309198926da99f06607199b1fc8208068e5e6cb6f792dba5e32cfe62
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

18 lines
No EOL
534 B
Text

import { Observable } from '../Observable';
export function scheduleArray(input, scheduler) {
return new Observable((subscriber) => {
let i = 0;
return scheduler.schedule(function () {
if (i === input.length) {
subscriber.complete();
}
else {
subscriber.next(input[i++]);
if (!subscriber.closed) {
this.schedule();
}
}
});
});
}
//# sourceMappingURL=scheduleArray.js.map