Numerous improvements and fixes

This commit is contained in:
Ross
2020-05-01 21:29:39 +01:00
parent e75294f97e
commit e81b291db5
5 changed files with 369 additions and 205 deletions
+1 -1
View File
@@ -39,4 +39,4 @@ export function formatBytes(bytes, decimals = 2) {
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + " " + sizes[i];
}
}