mol_vary 0.0.151 → 0.0.152

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.js CHANGED
@@ -2091,7 +2091,7 @@ var $;
2091
2091
  function $mol_log3_node_make(level, output, type, color) {
2092
2092
  return function $mol_log3_logger(event) {
2093
2093
  if (!event.time)
2094
- event = { time: new Date().toISOString(), ...event };
2094
+ event = { ...event, time: new Date().toISOString() };
2095
2095
  let tree = this.$mol_tree2_from_json(event);
2096
2096
  tree = tree.struct(type, tree.kids);
2097
2097
  let str = color(tree.toString());