fix pp value on chart?
This commit is contained in:
9
projects/common/src/utils/number-utils.ts
Normal file
9
projects/common/src/utils/number-utils.ts
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user