Rocky_Mountain_Vending/.pnpm-store/v10/files/90/01e3b4b9be04d9427f3b7ee08df25bcf3352f514eca248aac4b9f7ae24392663ec8da0f243a01df06b1db0c11e4d0339a7cc62249d07cc9df045466a9da088
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

5 lines
No EOL
190 B
Text

import { defer } from './defer';
export function iif(condition, trueResult, falseResult) {
return defer(() => (condition() ? trueResult : falseResult));
}
//# sourceMappingURL=iif.js.map