ts: numberWithCommas 분리

This commit is contained in:
2021-09-07 00:16:28 +09:00
parent 4a36ac6a04
commit f609e2b628
3 changed files with 7 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
export function numberWithCommas(x: number): string {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}