diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-09 16:36:01 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-06-09 16:36:01 -0400 |
commit | 3f42ed623adf591543bb8b738077e9172781ed09 (patch) | |
tree | 6e76408ec56dc9af3eab23a34dc745e71025f5c7 /src | |
parent | cd6e9ba609cfdbcad1365c8589e2c98d755752ad (diff) |
Fix malformed code issue
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/common.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/common.ts b/src/utils/common.ts index 645f229a..1956e811 100644 --- a/src/utils/common.ts +++ b/src/utils/common.ts @@ -237,4 +237,4 @@ export const badgesToDisplayBadges = ( // Documentation: https://stackoverflow.com/questions/2901102/how-to-print-a-number-with-commas-as-thousands-separators-in-javascript export const numberWithCommas = (digits: number) => { return digits.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ','); -
\ No newline at end of file +}; |