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
-4
View File
@@ -76,10 +76,6 @@ export function convColorValue(color: string): string {
}
export function numberWithCommas(x: number): string {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
//linkify가 불러와 있어야함
declare global {
interface Window {