123456789101112 |
- export function convertBytesToHumanReadable(
- bytes: number,
- precision = 2,
- ): string {
- if (bytes === 0 || isNaN(bytes)) {
- return "0 MB";
- }
- const i = Math.floor(Math.log(bytes) / Math.log(1024));
- const sizes = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
- return (bytes / Math.pow(1024, i)).toFixed(precision) + " " + sizes[i];
- }
|