mol_jsx_lib 0.0.766 → 0.0.768

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
@@ -1168,6 +1168,9 @@ var $;
1168
1168
  if (typeof val === 'function') {
1169
1169
  return $mol_dev_format_native(val);
1170
1170
  }
1171
+ if (Symbol.toStringTag in val) {
1172
+ return $mol_dev_format_native(val);
1173
+ }
1171
1174
  return null;
1172
1175
  },
1173
1176
  hasBody: val => val[$.$mol_dev_format_body],
package/node.test.js CHANGED
@@ -1159,6 +1159,9 @@ var $;
1159
1159
  if (typeof val === 'function') {
1160
1160
  return $mol_dev_format_native(val);
1161
1161
  }
1162
+ if (Symbol.toStringTag in val) {
1163
+ return $mol_dev_format_native(val);
1164
+ }
1162
1165
  return null;
1163
1166
  },
1164
1167
  hasBody: val => val[$.$mol_dev_format_body],