mol_plot_all 1.2.899 → 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/node.mjs CHANGED
@@ -391,6 +391,9 @@ var $;
391
391
  if (typeof val === 'function') {
392
392
  return $mol_dev_format_native(val);
393
393
  }
394
+ if (Symbol.toStringTag in val) {
395
+ return $mol_dev_format_native(val);
396
+ }
394
397
  return null;
395
398
  },
396
399
  hasBody: val => val[$.$mol_dev_format_body],
package/node.test.js CHANGED
@@ -382,6 +382,9 @@ var $;
382
382
  if (typeof val === 'function') {
383
383
  return $mol_dev_format_native(val);
384
384
  }
385
+ if (Symbol.toStringTag in val) {
386
+ return $mol_dev_format_native(val);
387
+ }
385
388
  return null;
386
389
  },
387
390
  hasBody: val => val[$.$mol_dev_format_body],