Fix a case of endless recursion

This commit is contained in:
Lyubomir Marinov
2017-01-31 22:47:47 -06:00
committed by Любомир Маринов
parent 7a57dcc08a
commit 91487ffc94
+5 -2
View File
@@ -43,9 +43,12 @@ class RouteRegistry {
return !a;
}
const aKeys = Object.keys(a);
const bKeys = Object.keys(b);
return (
Object.keys(a).every(key => a[key] === b[key])
&& /* symmetric */ this.areRoutesEqual(b, a));
aKeys.length === bKeys.length /* symmetric */
&& aKeys.every(key => a[key] === b[key]));
}
/**