Rocky_Mountain_Vending/.pnpm-store/v10/files/1b/dfdd8f2de5b4beeaf61babf886191ff1459a60a0a9beb24538de59a3fb34d41a7e3cd8c2707cb029b3cbd1bf7a2adcfe7ed9f715860b8d432b2cca2db0532b
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
205 B
Text

/**
* Return the part of domain without suffix.
*
* Example: for domain 'foo.com', the result would be 'foo'.
*/
export default function getDomainWithoutSuffix(domain: string, suffix: string): string;