mol_plot_all 1.2.900 → 1.2.901

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
@@ -376,6 +376,9 @@ var $;
376
376
  if (typeof val === 'function') {
377
377
  return $mol_dev_format_native(val);
378
378
  }
379
+ if (Symbol.toStringTag in val) {
380
+ return $mol_dev_format_native(val);
381
+ }
379
382
  return null;
380
383
  },
381
384
  hasBody: val => val[$.$mol_dev_format_body],