Skip to content

Commit 2300673

Browse files
Use strict equal comparison
1 parent 02760fd commit 2300673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

object/equals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const equalsDeep = (a, b) => {
1212
}
1313
return isObject(a) && isObject(b)
1414
? a === b || keySet(a, b).every(key => equalsDeep(a[key], b[key]))
15-
: _isEqual(a, b);
15+
: a === b;
1616
};
1717

1818
export const equalsDeepWith = f => (a, b) => {

0 commit comments

Comments
 (0)