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/web.js CHANGED
@@ -5837,6 +5837,8 @@ var $;
5837
5837
  const value = this.value();
5838
5838
  if (typeof value === 'number')
5839
5839
  return value.toLocaleString('en').replaceAll(',', '_');
5840
+ if (typeof value === 'bigint')
5841
+ return value.toLocaleString('en').replaceAll(',', '_');
5840
5842
  return value ? String(value) : JSON.stringify(value) ?? 'undefined';
5841
5843
  }
5842
5844
  expand_title() {