1
0
Fork 0
mirror of https://github.com/1disk/edp445.git synced 2024-08-14 22:47:02 +00:00
edp445/node_modules/canvacord/plugins/abbrev.js
2022-12-03 05:44:44 +00:00

24 lines
No EOL
792 B
JavaScript

module.exports = num => {
if (!num || isNaN(num)) return "0";
if (typeof num === "string") num = parseInt(num);
if (typeof Intl !== "undefined") {
return new Intl.NumberFormat("en", { notation: "compact" }).format(num);
} else {
let decPlaces = Math.pow(10, 1);
var abbrev = ["K", "M", "B", "T"];
for (var i = abbrev.length - 1; i >= 0; i--) {
var size = Math.pow(10, (i + 1) * 3);
if (size <= num) {
num = Math.round((num * decPlaces) / size) / decPlaces;
if (num == 1000 && i < abbrev.length - 1) {
num = 1;
i++;
}
num += abbrev[i];
break;
}
}
return `${num}`;
}
};