mol_dump_lib 0.0.447 → 0.0.449
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.d.ts +52 -52
- package/node.deps.json +1 -1
- package/node.js +2 -0
- package/node.js.map +1 -1
- package/node.mjs +2 -0
- package/node.test.js +2 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +52 -52
- package/web.deps.json +1 -1
- package/web.js +2 -0
- package/web.js.map +1 -1
- package/web.mjs +2 -0
package/node.js
CHANGED
|
@@ -6327,6 +6327,8 @@ var $;
|
|
|
6327
6327
|
const value = this.value();
|
|
6328
6328
|
if (typeof value === 'number')
|
|
6329
6329
|
return value.toLocaleString('en').replaceAll(',', '_');
|
|
6330
|
+
if (typeof value === 'bigint')
|
|
6331
|
+
return value.toLocaleString('en').replaceAll(',', '_');
|
|
6330
6332
|
return value ? String(value) : JSON.stringify(value) ?? 'undefined';
|
|
6331
6333
|
}
|
|
6332
6334
|
expand_title() {
|