mol_plot_all 1.2.1664 → 1.2.1666

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
@@ -1879,7 +1879,7 @@ var $;
1879
1879
  function $mol_log3_node_make(level, output, type, color) {
1880
1880
  return function $mol_log3_logger(event) {
1881
1881
  if (!event.time)
1882
- event = { time: new Date().toISOString(), ...event };
1882
+ event = { ...event, time: new Date().toISOString() };
1883
1883
  let tree = this.$mol_tree2_from_json(event);
1884
1884
  tree = tree.struct(type, tree.kids);
1885
1885
  let str = color(tree.toString());