fix pp value on chart?
All checks were successful
Deploy Backend / deploy (push) Successful in 4m27s
Deploy Website / deploy (push) Successful in 6m26s

This commit is contained in:
Lee
2024-10-14 03:06:22 +01:00
parent a15f8f46f9
commit ac4298c765
3 changed files with 20 additions and 5 deletions

View File

@ -0,0 +1,9 @@
/**
* Checks if a number is a whole number
*
* @param number the number to check
* @returns whether the number is a whole number
*/
export function isWholeNumber(number: number) {
return number % 1 === 0;
}