diginext-utils
Version:
README.md
18 lines (17 loc) • 593 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
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"}`);
}
}
exports.default = formatBytes;