mobx 6.3.9 → 6.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5602,7 +5602,7 @@ function eq(a, b, depth, aStack, bStack) {
5602
5602
  if (a !== a) return b !== b; // Exhaust primitive checks
5603
5603
 
5604
5604
  var type = typeof a;
5605
- if (!isFunction(type) && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5605
+ if (type !== "function" && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5606
5606
 
5607
5607
  var className = toString.call(a);
5608
5608
  if (className !== toString.call(b)) return false;