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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobx",
3
- "version": "6.3.9",
3
+ "version": "6.3.10",
4
4
  "description": "Simple, scalable state management.",
5
5
  "source": "src/mobx.ts",
6
6
  "main": "dist/index.js",
package/src/utils/eq.ts CHANGED
@@ -28,7 +28,7 @@ function eq(a: any, b: any, depth: number, aStack?: any[], bStack?: any[]) {
28
28
  if (a !== a) return b !== b
29
29
  // Exhaust primitive checks
30
30
  const type = typeof a
31
- if (!isFunction(type) && type !== "object" && typeof b != "object") return false
31
+ if (type !== "function" && type !== "object" && typeof b != "object") return false
32
32
 
33
33
  // Compare `[[Class]]` names.
34
34
  const className = toString.call(a)