cleanup
All checks were successful
Publish / deploy (push) Successful in 44s

This commit is contained in:
Lee 2023-11-21 14:22:37 +00:00
parent dc22a89da1
commit e3b37358b9

@ -1,13 +1,3 @@
/**
* Checks if the given value is an number.
*
* @param value the number
* @returns true if value is a number, otherwise false
*/
export function isNumber(value: any): boolean {
return !isNaN(value);
}
/**
* Formats a number to a string with commas
*