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>
9 lines
297 B
Text
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 };
|