UNPKG

300 BTypeScriptView Raw
1/**
2 * Performs equality by iterating through keys on an object and returning false
3 * when any key has values which are not strictly equal between the arguments.
4 * Returns true when the values of all keys are strictly equal.
5 */
6export declare function shallowEqual(objA: any, objB: any): boolean;