mol_jsx_lib 0.0.679 → 0.0.680

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
@@ -552,7 +552,12 @@ var $;
552
552
  if (!val)
553
553
  return null;
554
554
  if ($.$mol_dev_format_head in val) {
555
- return val[$.$mol_dev_format_head]();
555
+ try {
556
+ return val[$.$mol_dev_format_head]();
557
+ }
558
+ catch (error) {
559
+ return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
560
+ }
556
561
  }
557
562
  if (typeof val === 'function') {
558
563
  return $mol_dev_format_native(val);