Rocky_Mountain_Vending/.pnpm-store/v10/files/2f/81610d8d401a242a9a43e7ca92095acc60e3c57483b46903f1a6aa0fcd997c84e82a972d9fb160f6305a8fc5ba3142d3fbe501fe7d15cec7adab6480b336c5
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

19 lines
708 B
Text

/**
* Generates a RFC4122 version 4 UUID
*
* This function generates a random UUID using one of two methods:
* 1. The native randomUUID() function if available
* 2. A fallback implementation using crypto.getRandomValues()
*
* The fallback implementation:
* - Generates 16 random bytes using crypto.getRandomValues()
* - Sets the version bits to indicate version 4
* - Sets the variant bits to indicate RFC4122
* - Formats the bytes as a UUID string with dashes
*
* @returns A version 4 UUID string in the format: xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx
* where x is any hexadecimal digit and y is one of 8, 9, a, or b.
*
* @internal
*/
export declare const v4: () => string;