UNPKG

nexora

Version:

A lightweight, production-ready JavaScript library for building user interfaces, supporting JSX.

8 lines (7 loc) 286 B
/** * Shallow equal function to compare two objects * @param obj1 - The first object to compare * @param obj2 - The second object to compare * @returns True if the objects are shallowly equal, false otherwise */ export declare function shallowEqual(obj1: any, obj2: any): boolean;