mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 07:33:45 +08:00
15 lines
480 B
TypeScript
15 lines
480 B
TypeScript
const UNITS = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
|
|
|
|
const parseTraffic = (num?: number) => {
|
|
if (typeof num !== "number") return ["NaN", ""];
|
|
if (num < 1000) return [`${Math.round(num)}`, "B"];
|
|
const exp = Math.min(Math.floor(Math.log2(num) / 10), UNITS.length - 1);
|
|
const dat = num / Math.pow(1024, exp);
|
|
const ret = dat >= 1000 ? dat.toFixed(0) : dat.toPrecision(3);
|
|
const unit = UNITS[exp];
|
|
|
|
return [ret, unit];
|
|
};
|
|
|
|
export default parseTraffic;
|