mol_time_all 1.1.1638 → 1.1.1640

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
@@ -2282,7 +2282,7 @@ var $;
2282
2282
  function $mol_log3_node_make(level, output, type, color) {
2283
2283
  return function $mol_log3_logger(event) {
2284
2284
  if (!event.time)
2285
- event = { time: new Date().toISOString(), ...event };
2285
+ event = { ...event, time: new Date().toISOString() };
2286
2286
  let tree = this.$mol_tree2_from_json(event);
2287
2287
  tree = tree.struct(type, tree.kids);
2288
2288
  let str = color(tree.toString());