mol_wire_lib 1.0.860 → 1.0.861
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.d.ts +1 -1
- package/node.deps.json +1 -1
- package/node.js +4 -4
- package/node.js.map +1 -1
- package/node.mjs +4 -4
- package/node.test.js +4 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -1
- package/web.deps.json +1 -1
- package/web.js +4 -4
- package/web.js.map +1 -1
- package/web.mjs +4 -4
package/web.mjs
CHANGED
|
@@ -182,9 +182,6 @@ var $;
|
|
|
182
182
|
function $mol_dev_format_auto(obj) {
|
|
183
183
|
if (obj == null)
|
|
184
184
|
return $.$mol_dev_format_shade(String(obj));
|
|
185
|
-
if (typeof obj === 'object' && $.$mol_dev_format_head in obj) {
|
|
186
|
-
return obj[$.$mol_dev_format_head]();
|
|
187
|
-
}
|
|
188
185
|
return [
|
|
189
186
|
'object',
|
|
190
187
|
{
|
|
@@ -721,7 +718,10 @@ var $;
|
|
|
721
718
|
[$mol_wire_cursor.fresh]: '🟢',
|
|
722
719
|
[$mol_wire_cursor.final]: '🔵',
|
|
723
720
|
}[this.cursor] ?? this.cursor.toString();
|
|
724
|
-
return $mol_dev_format_div({}, $
|
|
721
|
+
return $mol_dev_format_div({}, $mol_dev_format_auto({
|
|
722
|
+
[$mol_dev_format_head]: () => $mol_dev_format_shade(cursor),
|
|
723
|
+
[$mol_dev_format_body]: () => $mol_dev_format_native(this),
|
|
724
|
+
}), $mol_dev_format_auto(this.cache));
|
|
725
725
|
}
|
|
726
726
|
get $() {
|
|
727
727
|
return (this.host ?? this.task)['$'];
|