1
Fork 0

new number formatter

This commit is contained in:
Ashley 2022-09-22 16:25:31 +02:00
parent 37849b17f1
commit c412be8451

View file

@ -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);
}
/////////////////////////////////