mol_view_tree2_lib 1.0.154 → 1.0.156

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
@@ -3373,7 +3373,7 @@ var $;
3373
3373
  function $mol_log3_node_make(level, output, type, color) {
3374
3374
  return function $mol_log3_logger(event) {
3375
3375
  if (!event.time)
3376
- event = { time: new Date().toISOString(), ...event };
3376
+ event = { ...event, time: new Date().toISOString() };
3377
3377
  let tree = this.$mol_tree2_from_json(event);
3378
3378
  tree = tree.struct(type, tree.kids);
3379
3379
  let str = color(tree.toString());