Files
core_ng/server/util/numberWithCommas.ts
T
2023-08-05 12:12:18 +00:00

6 lines
121 B
TypeScript

export function numberWithCommas(x: number): string {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}