fix
Some checks failed
Deploy Backend / deploy (push) Successful in 4m14s
Deploy Website / deploy (push) Failing after 2m42s

This commit is contained in:
Lee
2024-10-15 19:43:23 +01:00
parent 970ab22e2f
commit f2ef170f01
14 changed files with 33 additions and 32 deletions

View File

@ -7,3 +7,23 @@
export function isWholeNumber(number: number) {
return number % 1 === 0;
}
/**
* Formats a number without trailing zeros.
*
* @param num the number to format
* @returns the formatted number
*/
export function formatNumberWithCommas(num: number) {
return num.toLocaleString();
}
/**
* Formats the pp value
*
* @param num the pp to format
* @returns the formatted pp
*/
export function formatPp(num: number) {
return num.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 });
}