fix motd on mobile and format the player counts
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s
This commit is contained in:
9
src/common/number-utils.ts
Normal file
9
src/common/number-utils.ts
Normal file
@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Formats a number using the browser's locale
|
||||
*
|
||||
* @param number the number to format
|
||||
* @returns the formatted number
|
||||
*/
|
||||
export function formatNumber(number: number): string {
|
||||
return new Intl.NumberFormat().format(number);
|
||||
}
|
Reference in New Issue
Block a user