mol_wire_lib 1.0.899 → 1.0.901

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/web.mjs CHANGED
@@ -161,6 +161,9 @@ var $;
161
161
  if (typeof val === 'function') {
162
162
  return $mol_dev_format_native(val);
163
163
  }
164
+ if (Symbol.toStringTag in val) {
165
+ return $mol_dev_format_native(val);
166
+ }
164
167
  return null;
165
168
  },
166
169
  hasBody: val => val[$.$mol_dev_format_body],