file size only one decimal

This commit is contained in:
Djeeberjr 2021-07-27 21:55:05 +02:00
parent 53969946d2
commit b08a527199

View File

@ -1,6 +1,6 @@
function sizeToReadable(size: number): string {
const i = Math.floor(Math.log(size) / Math.log(1024))
return (size / Math.pow(1024, i)).toFixed(2) + " " + ["B", "kB", "MB", "GB", "TB"][i]
return (size / Math.pow(1024, i)).toFixed(1) + " " + ["B", "kB", "MB", "GB", "TB"][i]
}