Rocky_Mountain_Vending/.pnpm-store/v10/files/ef/7aa4a8e1acfacda7935769fa6be97777e13b53b93dc29f5af8bff41995ec7573a0164913d084c102b63676b7511166a06a6b085c00af6adc9ddaefa6c432b4
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

11 lines
No EOL
219 B
Text

"use strict";
exports.__esModule = true;
exports.default = hyphenate;
var rUpper = /([A-Z])/g;
function hyphenate(string) {
return string.replace(rUpper, '-$1').toLowerCase();
}
module.exports = exports["default"];