Rocky_Mountain_Vending/.pnpm-store/v10/files/9c/aa04b97c0d0bd31bd83b370b8abaaf227158ef9b0269b96ce541cb4925f6045e089d49b4d99dc2fcd40849edcc5a89326952ddad3b509f671ce2b7841013f5
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

23 lines
No EOL
834 B
Text

import { Observable } from '../Observable';
import { executeSchedule } from '../util/executeSchedule';
export function scheduleAsyncIterable(input, scheduler) {
if (!input) {
throw new Error('Iterable cannot be null');
}
return new Observable((subscriber) => {
executeSchedule(subscriber, scheduler, () => {
const iterator = input[Symbol.asyncIterator]();
executeSchedule(subscriber, scheduler, () => {
iterator.next().then((result) => {
if (result.done) {
subscriber.complete();
}
else {
subscriber.next(result.value);
}
});
}, 0, true);
});
});
}
//# sourceMappingURL=scheduleAsyncIterable.js.map