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/node.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],
package/node.test.js CHANGED
@@ -152,6 +152,9 @@ var $;
152
152
  if (typeof val === 'function') {
153
153
  return $mol_dev_format_native(val);
154
154
  }
155
+ if (Symbol.toStringTag in val) {
156
+ return $mol_dev_format_native(val);
157
+ }
155
158
  return null;
156
159
  },
157
160
  hasBody: val => val[$.$mol_dev_format_body],