mol_plot_all 1.2.819 → 1.2.820

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
@@ -331,7 +331,12 @@ var $;
331
331
  if (!val)
332
332
  return null;
333
333
  if ($.$mol_dev_format_head in val) {
334
- return val[$.$mol_dev_format_head]();
334
+ try {
335
+ return val[$.$mol_dev_format_head]();
336
+ }
337
+ catch (error) {
338
+ return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
339
+ }
335
340
  }
336
341
  if (typeof val === 'function') {
337
342
  return $mol_dev_format_native(val);