mol_dump_lib 0.0.448 → 0.0.450

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
@@ -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() {
package/node.test.js CHANGED
@@ -6318,6 +6318,8 @@ var $;
6318
6318
  const value = this.value();
6319
6319
  if (typeof value === 'number')
6320
6320
  return value.toLocaleString('en').replaceAll(',', '_');
6321
+ if (typeof value === 'bigint')
6322
+ return value.toLocaleString('en').replaceAll(',', '_');
6321
6323
  return value ? String(value) : JSON.stringify(value) ?? 'undefined';
6322
6324
  }
6323
6325
  expand_title() {