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>
12 lines
No EOL
479 B
Text
12 lines
No EOL
479 B
Text
import { operate } from '../util/lift';
|
|
import { mergeAll } from './mergeAll';
|
|
import { popNumber, popScheduler } from '../util/args';
|
|
import { from } from '../observable/from';
|
|
export function merge(...args) {
|
|
const scheduler = popScheduler(args);
|
|
const concurrent = popNumber(args, Infinity);
|
|
return operate((source, subscriber) => {
|
|
mergeAll(concurrent)(from([source, ...args], scheduler)).subscribe(subscriber);
|
|
});
|
|
}
|
|
//# sourceMappingURL=merge.js.map |