mol_wire_lib 1.0.395 → 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.test.js CHANGED
@@ -2116,10 +2116,19 @@ var $;
2116
2116
  }
2117
2117
  }
2118
2118
  }
2119
- if (prev !== undefined && !$mol_compare_deep(prev, next)) {
2119
+ if (fiber.host === this)
2120
+ return next;
2121
+ if ($mol_compare_deep(prev, next)) {
2122
+ this.$.$mol_log3_rise({
2123
+ message: '💧 Same',
2124
+ place: fiber,
2125
+ });
2126
+ }
2127
+ else {
2120
2128
  this.$.$mol_log3_rise({
2121
- message: 'Changed',
2129
+ message: '🔥 Next',
2122
2130
  place: fiber,
2131
+ prev,
2123
2132
  });
2124
2133
  }
2125
2134
  return next;