@plasmicapp/react-web 0.2.299 → 0.2.301
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/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/react-web.esm.js +5 -5
- package/dist/react-web.esm.js.map +1 -1
- package/dist/states/helpers.d.ts +1 -1
- package/package.json +9 -9
- package/skinny/dist/index.js +5 -5
- package/skinny/dist/index.js.map +1 -1
- package/skinny/dist/states/helpers.d.ts +1 -1
package/dist/react-web.esm.js
CHANGED
|
@@ -2670,7 +2670,7 @@ var isRegExp = function (a) {
|
|
|
2670
2670
|
return Object.prototype.toString.call(a) === "[object RegExp]";
|
|
2671
2671
|
};
|
|
2672
2672
|
/**
|
|
2673
|
-
* Forked from https://github.com/
|
|
2673
|
+
* Forked from https://github.com/epoberezkin/fast-deep-equal/blob/master/src/index.jst
|
|
2674
2674
|
* Changes: removed the comparison between constructors and instanceof objects
|
|
2675
2675
|
* because they are dependent on the window object
|
|
2676
2676
|
*/
|
|
@@ -2747,10 +2747,10 @@ function deepEqual(a, b) {
|
|
|
2747
2747
|
// if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags;
|
|
2748
2748
|
if (isRegExp(a) && isRegExp(b))
|
|
2749
2749
|
return a.source === b.source && a.flags === b.flags;
|
|
2750
|
-
if (a.valueOf !== Object.prototype.valueOf)
|
|
2751
|
-
|
|
2752
|
-
if (a.toString !== Object.prototype.toString)
|
|
2753
|
-
|
|
2750
|
+
// if (a.valueOf !== Object.prototype.valueOf)
|
|
2751
|
+
// return a.valueOf() === b.valueOf();
|
|
2752
|
+
// if (a.toString !== Object.prototype.toString)
|
|
2753
|
+
// return a.toString() === b.toString();
|
|
2754
2754
|
keys = Object.keys(a);
|
|
2755
2755
|
length = keys.length;
|
|
2756
2756
|
if (length !== Object.keys(b).length)
|