mol_crypto_lib 0.1.1776 → 0.1.1778

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
@@ -2061,7 +2061,7 @@ var $;
2061
2061
  function $mol_log3_node_make(level, output, type, color) {
2062
2062
  return function $mol_log3_logger(event) {
2063
2063
  if (!event.time)
2064
- event = { time: new Date().toISOString(), ...event };
2064
+ event = { ...event, time: new Date().toISOString() };
2065
2065
  let tree = this.$mol_tree2_from_json(event);
2066
2066
  tree = tree.struct(type, tree.kids);
2067
2067
  let str = color(tree.toString());