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>
10 lines
No EOL
411 B
Text
10 lines
No EOL
411 B
Text
import { concat } from '../observable/concat';
|
|
import { popScheduler } from '../util/args';
|
|
import { operate } from '../util/lift';
|
|
export function startWith(...values) {
|
|
const scheduler = popScheduler(values);
|
|
return operate((source, subscriber) => {
|
|
(scheduler ? concat(values, source, scheduler) : concat(values, source)).subscribe(subscriber);
|
|
});
|
|
}
|
|
//# sourceMappingURL=startWith.js.map |