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.
package/dist/mobx.esm.js CHANGED
@@ -5616,7 +5616,7 @@ function eq(a, b, depth, aStack, bStack) {
5616
5616
  if (a !== a) return b !== b; // Exhaust primitive checks
5617
5617
 
5618
5618
  var type = typeof a;
5619
- if (!isFunction(type) && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5619
+ if (type !== "function" && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5620
5620
 
5621
5621
  var className = toString.call(a);
5622
5622
  if (className !== toString.call(b)) return false;