mol_plot_all 1.2.1252 → 1.2.1253

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.audit.js CHANGED
@@ -1 +1,2 @@
1
- console.info( '%c $mol_build ▫ Audit passed', 'color:forestgreen; font-weight:bolder' )
1
+ console.info( '%c place: $mol_build
2
+ message: Audit passed', 'color:forestgreen; font-weight:bolder' )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_plot_all",
3
- "version": "1.2.1252",
3
+ "version": "1.2.1253",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.audit.js CHANGED
@@ -1 +1,2 @@
1
- console.info( '%c $mol_build ▫ Audit passed', 'color:forestgreen; font-weight:bolder' )
1
+ console.info( '%c place: $mol_build
2
+ message: Audit passed', 'color:forestgreen; font-weight:bolder' )
package/web.js CHANGED
@@ -1161,12 +1161,12 @@ var $;
1161
1161
  if (pending)
1162
1162
  pending();
1163
1163
  let tpl = '%c';
1164
- const chunks = Object.values(event);
1164
+ const chunks = Object.entries(event);
1165
1165
  for (let i = 0; i < chunks.length; ++i) {
1166
- tpl += (typeof chunks[i] === 'string') ? ' %s' : ' %o';
1166
+ tpl += (typeof chunks[i][1] === 'string') ? '%s: %s\n' : '%s: %o\n';
1167
1167
  }
1168
1168
  const style = `color:${color};font-weight:bolder`;
1169
- this.console[level](tpl, style, ...chunks);
1169
+ this.console[level](tpl, style, ...[].concat(...chunks));
1170
1170
  const self = this;
1171
1171
  return () => self.console.groupEnd();
1172
1172
  };