mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 12:38:26 +01:00
new number formatter
This commit is contained in:
parent
c543ae840a
commit
4fa57c1146
1 changed files with 3 additions and 6 deletions
|
@ -93,12 +93,9 @@ function IsJsonString(str) {
|
|||
}
|
||||
|
||||
function convert(value) {
|
||||
if (value >= 1000000) {
|
||||
value = value / 1000000 + "M";
|
||||
} else if (value >= 1000) {
|
||||
value = value / 1000 + "K";
|
||||
}
|
||||
return value;
|
||||
return new Intl.NumberFormat('en-GB', {
|
||||
notation: "compact"
|
||||
}).format(value);
|
||||
}
|
||||
|
||||
/////////////////////////////////
|
||||
|
|
Loading…
Reference in a new issue