We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af99304 commit 0219a58Copy full SHA for 0219a58
examples/issue-62.js
@@ -0,0 +1,11 @@
1
+var deep = require("../");
2
+
3
+var a = {};
4
+var b = {};
5
+a.x = b;
6
+b.x = b;
7
+deep.diff(a, b); // True
8
9
+a.x = a; // Change to a
10
+// No change to b
11
+console.log(deep.diff(a, b)); // Still true...
0 commit comments