mol_plot_all 1.2.1252 → 1.2.1254
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 +2 -1
- package/package.json +1 -1
- package/web.audit.js +2 -1
- package/web.js +3 -3
- package/web.js.map +1 -1
- package/web.mjs +3 -3
package/node.audit.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
console.info( '%c
|
|
1
|
+
console.info( '%c place: $mol_build
|
|
2
|
+
message: Audit passed', 'color:forestgreen; font-weight:bolder' )
|
package/package.json
CHANGED
package/web.audit.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
console.info( '%c
|
|
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.
|
|
1164
|
+
const chunks = Object.entries(event);
|
|
1165
1165
|
for (let i = 0; i < chunks.length; ++i) {
|
|
1166
|
-
tpl += (typeof chunks[i] === 'string') ? '
|
|
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
|
};
|