2017-12-28 21:31:19 +00:00
|
|
|
"use strict";
|
|
|
|
|
2019-12-16 11:26:10 +00:00
|
|
|
const sizes = ["Bytes", "KiB", "MiB", "GiB", "TiB", "PiB"];
|
2017-12-28 21:31:19 +00:00
|
|
|
|
2019-11-16 17:24:03 +00:00
|
|
|
export default (size) => {
|
2017-12-28 21:31:19 +00:00
|
|
|
// Loosely inspired from https://stackoverflow.com/a/18650828/1935861
|
|
|
|
const i = size > 0 ? Math.floor(Math.log(size) / Math.log(1024)) : 0;
|
|
|
|
const fixedSize = parseFloat((size / Math.pow(1024, i)).toFixed(1));
|
|
|
|
return `${fixedSize} ${sizes[i]}`;
|
|
|
|
};
|