Rocky_Mountain_Vending/.pnpm-store/v10/files/2e/f5d1f0d187f09f0fc795c663d760fd88af398c246ca11e09572221066fd516f9efb981909d1aa1d08107b4953db5664b42b1f2fb368e3bbd636cc43b58414b
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

4 lines
No EOL
124 B
Text

var rUpper = /([A-Z])/g;
export default function hyphenate(string) {
return string.replace(rUpper, '-$1').toLowerCase();
}