mol_regexp 0.0.1007 → 0.0.1008

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_regexp",
3
- "version": "0.0.1007",
3
+ "version": "0.0.1008",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -1030,6 +1030,10 @@ var $;
1030
1030
  const print = (val) => {
1031
1031
  if (!val)
1032
1032
  return val;
1033
+ if (typeof val === 'bigint')
1034
+ return String(val) + 'n';
1035
+ if (typeof val === 'symbol')
1036
+ return `Symbol(${val.description})`;
1033
1037
  if (typeof val !== 'object')
1034
1038
  return val;
1035
1039
  if ('outerHTML' in val)