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>
23 lines
No EOL
834 B
Text
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 |