Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/6360fbd94e6d127c76c3ddf0c4d027adefc8a982466840e7d9a9afd8e50d4f18759c6cca70f6b418d25d14d750a4a4bd132a74153a681affde3e934e1b6e3c
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

13 lines
No EOL
250 B
Text

"use strict";
exports.__esModule = true;
exports.default = camelize;
var rHyphen = /-(.)/g;
function camelize(string) {
return string.replace(rHyphen, function (_, chr) {
return chr.toUpperCase();
});
}
module.exports = exports["default"];