UNPKG

@sebgroup/frontend-tools

Version:
8 lines (7 loc) 292 B
/** * Compare if two objects are the same, returns true or false * @param type the comparison type * @param objectA the first object * @param objectB the second object to compare against */ export declare function isSameObject<T>(objectA: T, objectB: T, deep?: boolean): boolean;