You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,7 @@ As an example, take the following:
79
79
{ a:1 } !== { a:1 } // These are two different objects, they hold different references and so are not strictly equal - even though they hold the same values inside
80
80
{ a:1 } != { a:1 } // They have the same type, meaning loose equality performs the same check as strict equality - they are still not equal.
81
81
82
+
var deepEql =require("deep-eql");
82
83
deepEql({ a:1 }, { a:1 }) ===true// deepEql can determine that they share the same keys and those keys share the same values, therefore they are deeply equal!
0 commit comments