mol_wire_lib 1.0.396 → 1.0.397
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.deps.json +1 -1
- package/node.esm.js +11 -2
- package/node.esm.js.map +1 -1
- package/node.js +11 -2
- package/node.js.map +1 -1
- package/node.test.js +11 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +11 -2
- package/web.esm.js.map +1 -1
- package/web.js +11 -2
- package/web.js.map +1 -1
package/node.js
CHANGED
|
@@ -2124,10 +2124,19 @@ var $;
|
|
|
2124
2124
|
}
|
|
2125
2125
|
}
|
|
2126
2126
|
}
|
|
2127
|
-
if (
|
|
2127
|
+
if (fiber.host === this)
|
|
2128
|
+
return next;
|
|
2129
|
+
if ($mol_compare_deep(prev, next)) {
|
|
2130
|
+
this.$.$mol_log3_rise({
|
|
2131
|
+
message: '💧 Same',
|
|
2132
|
+
place: fiber,
|
|
2133
|
+
});
|
|
2134
|
+
}
|
|
2135
|
+
else {
|
|
2128
2136
|
this.$.$mol_log3_rise({
|
|
2129
|
-
message: '
|
|
2137
|
+
message: '🔥 Next',
|
|
2130
2138
|
place: fiber,
|
|
2139
|
+
prev,
|
|
2131
2140
|
});
|
|
2132
2141
|
}
|
|
2133
2142
|
return next;
|