mol_plot_all 1.2.436 → 1.2.438
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/node.test.js +11 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +11 -2
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -7799,10 +7799,19 @@ var $;
|
|
|
7799
7799
|
}
|
|
7800
7800
|
}
|
|
7801
7801
|
}
|
|
7802
|
-
if (
|
|
7802
|
+
if (fiber.host === this)
|
|
7803
|
+
return next;
|
|
7804
|
+
if ($mol_compare_deep(prev, next)) {
|
|
7805
|
+
this.$.$mol_log3_rise({
|
|
7806
|
+
message: '💧 Same',
|
|
7807
|
+
place: fiber,
|
|
7808
|
+
});
|
|
7809
|
+
}
|
|
7810
|
+
else if (prev !== undefined) {
|
|
7803
7811
|
this.$.$mol_log3_rise({
|
|
7804
|
-
message: '
|
|
7812
|
+
message: '🔥 Next',
|
|
7805
7813
|
place: fiber,
|
|
7814
|
+
prev,
|
|
7806
7815
|
});
|
|
7807
7816
|
}
|
|
7808
7817
|
return next;
|