Skip to content

Commit 0b78afd

Browse files
committed
equals using overridden __equals__ method for object properties
1 parent c106303 commit 0b78afd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

build/multiplex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@
691691
continue;
692692
}
693693

694-
if (!$computeEquals(_val, objB[_prop])) {
694+
if (!$computeEquals(_val, objB[_prop], true)) {
695695
return false;
696696
}
697697
}

build/multiplex.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/multiplex.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/javascript/multiplex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@
691691
continue;
692692
}
693693

694-
if (!$computeEquals(_val, objB[_prop])) {
694+
if (!$computeEquals(_val, objB[_prop], true)) {
695695
return false;
696696
}
697697
}

0 commit comments

Comments
 (0)