UNPKG

@imjano/compare_2_objects

Version:

This function compare deeply 2 objects and returns true if the objects are identical

10 lines (9 loc) 247 B
/** * @author imjano * @param obj1 * @param obj2 * @returns boolean * @description This function compare deeply 2 objects * returns true if the objects are identical */ export default function compareObjects(obj1: any, obj2: any): boolean;