2017-06-11 06:08:44 +09:00
|
|
|
export default (bytes, digits = 0) => {
|
2017-11-13 18:05:35 +09:00
|
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
|
2016-12-29 07:49:51 +09:00
|
|
|
if (bytes == 0) return '0Byte';
|
2017-11-13 18:05:35 +09:00
|
|
|
const i = Math.floor(Math.log(bytes) / Math.log(1024));
|
2017-06-11 06:08:44 +09:00
|
|
|
return (bytes / Math.pow(1024, i)).toFixed(digits).replace(/\.0+$/, '') + sizes[i];
|
2017-03-18 20:05:11 +09:00
|
|
|
};
|