mol_compare_deep 0.0.1534 → 0.0.1536

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
@@ -807,7 +807,7 @@ var $;
807
807
  function $mol_log3_node_make(level, output, type, color) {
808
808
  return function $mol_log3_logger(event) {
809
809
  if (!event.time)
810
- event = { time: new Date().toISOString(), ...event };
810
+ event = { ...event, time: new Date().toISOString() };
811
811
  let tree = this.$mol_tree2_from_json(event);
812
812
  tree = tree.struct(type, tree.kids);
813
813
  let str = color(tree.toString());