mol_jsx_lib 0.0.767 → 0.0.769

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
@@ -565,6 +565,9 @@ var $;
565
565
  if (typeof val === 'function') {
566
566
  return $mol_dev_format_native(val);
567
567
  }
568
+ if (Symbol.toStringTag in val) {
569
+ return $mol_dev_format_native(val);
570
+ }
568
571
  return null;
569
572
  },
570
573
  hasBody: val => val[$.$mol_dev_format_body],