Rocky_Mountain_Vending/.pnpm-store/v10/files/c4/b921abee918369aa1d656b703245c88265a2727ea4eca5dfb5d1aad324b6d7cb918191cca0e7c43958fef45d3606c5e5496fb2b07eeb10de4395f19f181394
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

9 lines
297 B
Text

/**
* Compare two objects using reference equality and stable deep hashing.
* @param {any} object1 First object
* @param {any} object2 Second object
* @return {boolean} true if equal and false if not
*/
declare function isEqual(object1: any, object2: any): boolean;
export { isEqual as i };