Rocky_Mountain_Vending/.pnpm-store/v10/files/10/96da52689a81f0d90a14046f4fcbea71e36458c41dd1d6b72de24985ed72be886ff0162ce56850d1b2461a4a1d5fa8a754ec94112308401d24b6d65cdf94dc
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

9 lines
389 B
Text

/**
* Given a path and a prefix it will remove the prefix when it exists in the
* given path. It ensures it matches exactly without containing extra chars
* and if the prefix is not there it will be noop.
*
* @param path The path to remove the prefix from.
* @param prefix The prefix to be removed.
*/
export declare function removePathPrefix(path: string, prefix: string): string;