mol_plot_all 1.2.818 → 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/node.mjs CHANGED
@@ -346,7 +346,12 @@ var $;
346
346
  if (!val)
347
347
  return null;
348
348
  if ($.$mol_dev_format_head in val) {
349
- return val[$.$mol_dev_format_head]();
349
+ try {
350
+ return val[$.$mol_dev_format_head]();
351
+ }
352
+ catch (error) {
353
+ return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
354
+ }
350
355
  }
351
356
  if (typeof val === 'function') {
352
357
  return $mol_dev_format_native(val);
package/node.test.js CHANGED
@@ -338,7 +338,12 @@ var $;
338
338
  if (!val)
339
339
  return null;
340
340
  if ($.$mol_dev_format_head in val) {
341
- return val[$.$mol_dev_format_head]();
341
+ try {
342
+ return val[$.$mol_dev_format_head]();
343
+ }
344
+ catch (error) {
345
+ return $.$mol_dev_format_accent($mol_dev_format_native(val), '💨', $mol_dev_format_native(error), '');
346
+ }
342
347
  }
343
348
  if (typeof val === 'function') {
344
349
  return $mol_dev_format_native(val);