Rocky_Mountain_Vending/.pnpm-store/v10/files/da/26d07f63c86062527cca1cb25bfa9a21509871dab3f7a8e168284812f98d1f016a36e7a73c151af76e9f75e16beb2fb7cf12379e6432543312716bd32edf1e
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
689 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;