/** * Performs a deep comparison between two values to determine if they are equivalent. * * **Note:** This method supports comparing nulls, undefineds, booleans, numbers, strings, Dates, objects, Functions, Arrays, RegExs, Maps, Sets, and Typed Arrays. * * Object objects are compared by their own, not inherited, enumerable properties. * * Functions and DOM nodes are compared by strict equality, i.e. ===. * * The order of the array items must be the same for the arrays to be equal. */ export declare function compare(a: any, b: any): boolean; //# sourceMappingURL=compare.d.ts.map