// checks if two objects have equal contents export function isEqualObject(obj1: object, obj2: object): boolean { return JSON.stringify(obj1) === JSON.stringify(obj2); // @todo need to move this to utility }