Files
jellyfin-audio-player/src/utility/formatBytes.ts

15 lines
511 B
TypeScript
Raw Normal View History

2022-01-02 02:28:52 +01:00
const k = 1024;
2022-05-17 23:34:25 +02:00
const sizes = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
2022-01-02 02:28:52 +01:00
/**
* Convert a number of bytes to a human-readable string
* CREDIT: https://gist.github.com/zentala/1e6f72438796d74531803cc3833c039c
*/
2022-04-09 15:48:01 +02:00
export default function formatBytes(bytes: number, decimals: number = 1) {
2022-01-02 02:28:52 +01:00
if (bytes === 0) {
return '0 Bytes';
}
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(decimals)) + ' ' + sizes[i];
}