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.
@@ -5608,7 +5608,7 @@
5608
5608
  if (a !== a) return b !== b; // Exhaust primitive checks
5609
5609
 
5610
5610
  var type = typeof a;
5611
- if (!isFunction(type) && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5611
+ if (type !== "function" && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5612
5612
 
5613
5613
  var className = toString.call(a);
5614
5614
  if (className !== toString.call(b)) return false;