Rocky_Mountain_Vending/.pnpm-store/v10/files/e0/90704df459b6ee7aa0bbf70e4571fd0fd2b95c77a213fcde694b2123340df1b3ff01331feaced2c841ab0d03fc5fbcfab6c089b2ac03fcd4c07d5cd6180553
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

6 lines
No EOL
355 B
Text

import { switchMap } from './switchMap';
import { isFunction } from '../util/isFunction';
export function switchMapTo(innerObservable, resultSelector) {
return isFunction(resultSelector) ? switchMap(function () { return innerObservable; }, resultSelector) : switchMap(function () { return innerObservable; });
}
//# sourceMappingURL=switchMapTo.js.map