Rocky_Mountain_Vending/.pnpm-store/v10/files/4e/1f3e048707d62c94f8e5e49453192c752ea5248afe5149d2ec39b170333f214c69a2a0fe466ecdec84167f047a467da59250f3fcba701da5727fdce492cd0f
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
226 B
Text

/**
* Check if `hostname` is *probably* a valid ip addr (either ipv6 or ipv4).
* This *will not* work on any string. We need `hostname` to be a valid
* hostname.
*/
export default function isIp(hostname: string): boolean;