mol_dump_lib 0.0.235 → 0.0.237

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.js 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],