Created
March 8, 2021 15:16
-
-
Save eugenemtn/bda69d0a2ce409ed03d19ac1f8f96169 to your computer and use it in GitHub Desktop.
Formatter for abbrevated numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function abbreviatedNumber(value: number): string { | |
if (isNaN(value)) { | |
return ""; | |
} | |
let newValue = value; | |
const suffixes = ["", "K", "M", "B", "T"]; | |
let suffixNum = 0; | |
while (newValue >= 1000) { | |
newValue /= 1000; | |
suffixNum++; | |
} | |
return newValue.toPrecision(3) + suffixes[suffixNum]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment