diginext-utils
Version:
README.md
15 lines (14 loc) • 497 B
JavaScript
export default function formatBytes(bytes) {
//
try {
if (bytes === 0)
return "0 Bytes";
const k = 1024;
const sizes = ["Bytes", "KB", "MB", "GB", "TB"];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + " " + sizes[i];
}
catch (error) {
throw new Error(`Format Bytes failed: ${error instanceof Error ? error.message : "Unknown error"}`);
}
}