mol_regexp 0.0.1006 → 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/node.test.js +5 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +4 -0
- package/web.test.js.map +1 -1
package/package.json
CHANGED
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)
|