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

15 lines
485 B
Text

/**
* @param key - JSON object key.
* @param value - parsed value.
* @param context - original JSON string for reference. Not available until Node.js 21 and unavailable in Safari as
* of April 2025.
*
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#browser_compatibility
*
* @internal
*
* @returns transformed value.
*/
export declare function jsonReviver(key: string, value: any, context?: {
source?: string;
}): any;