Rocky_Mountain_Vending/.pnpm-store/v10/files/0f/54a1857e60e43630755c4f7d5f584c78fcd95aa301585bf0938b10c97b50a9589acd5aa9523845b95393a3cae5c2be4345d7fbfc0fa6d0cff5d7bd0542847d
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
195 B
Text

export function extendedEncodeURIComponent(str) {
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
return "%" + c.charCodeAt(0).toString(16).toUpperCase();
});
}