mirror of
https://github.com/strapi/strapi.git
synced 2025-08-17 05:02:12 +00:00
16 lines
503 B
JavaScript
16 lines
503 B
JavaScript
![]() |
// Source: https://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript
|
||
|
function formatBytes(bytes, decimals) {
|
||
|
if (bytes === 0) {
|
||
|
return '0 Bytes';
|
||
|
}
|
||
|
|
||
|
const k = 1024;
|
||
|
const dm = decimals <= 0 ? 0 : decimals || 2;
|
||
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
||
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
||
|
|
||
|
return `${parseFloat((bytes / k ** i).toFixed(dm))} ${sizes[i]}`;
|
||
|
}
|
||
|
|
||
|
export default formatBytes;
|