diff --git a/src/functions/sizeToReadable.ts b/src/functions/sizeToReadable.ts index 0a3df26..ecd4ec3 100644 --- a/src/functions/sizeToReadable.ts +++ b/src/functions/sizeToReadable.ts @@ -1,6 +1,7 @@ function sizeToReadable(size: number): string { const i = Math.floor(Math.log(size) / Math.log(1024)) - return (size / Math.pow(1024, i)).toFixed(1) + " " + ["B", "kB", "MB", "GB", "TB"][i] + const num = (size / Math.pow(1024, i)) + return (num.toFixed(1).endsWith("0")?num.toFixed(0):num.toFixed(1)) + " " + ["B", "kB", "MB", "GB", "TB"][i] }