FormattingUtils: Add a formatCountLong method.

pull/21833/head
Damir Jelić 2020-01-24 16:13:55 +01:00
parent 47999c2e46
commit 2d8477aaa6
1 changed files with 9 additions and 0 deletions

View File

@ -30,6 +30,15 @@ export function formatCount(count) {
return (count / 1000000000).toFixed(1) + "B"; // 10B is enough for anyone, right? :S return (count / 1000000000).toFixed(1) + "B"; // 10B is enough for anyone, right? :S
} }
/**
* Format a count showing the whole number but making it a bit more readable.
* e.g: 1000 => 1,000
*/
export function formatCountLong(count) {
const formatter = new Intl.NumberFormat();
return formatter.format(count)
}
/** /**
* format a size in bytes into a human readable form * format a size in bytes into a human readable form
* e.g: 1024 -> 1.00 KB * e.g: 1024 -> 1.00 KB