Rocky_Mountain_Vending/.pnpm-store/v10/files/83/1ce48e6798b2bdf0a42b52675925e6b3f327756d8ff661acf277e09b31e33668808f745819960843ad25ebaa6f4026049801c62121dd0690adf953dc3ac2dd
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

6 lines
151 B
Text

'use strict';
export default function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return match && match[1] || '';
}