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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # mobx
2
2
 
3
+ ## 6.3.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [`2d70798e`](https://github.com/mobxjs/mobx/commit/2d70798eb327187d93757757ceaf410a608735b2) [#3233](https://github.com/mobxjs/mobx/pull/3233) Thanks [@anderlaw](https://github.com/anderlaw)! - `eq.ts` fix comparer logic
8
+
3
9
  ## 6.3.9
4
10
 
5
11
  ### Patch Changes
@@ -5606,7 +5606,7 @@ function eq(a, b, depth, aStack, bStack) {
5606
5606
  if (a !== a) return b !== b; // Exhaust primitive checks
5607
5607
 
5608
5608
  var type = typeof a;
5609
- if (!isFunction(type) && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5609
+ if (type !== "function" && type !== "object" && typeof b != "object") return false; // Compare `[[Class]]` names.
5610
5610
 
5611
5611
  var className = toString.call(a);
5612
5612
  if (className !== toString.call(b)) return false;