@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
24 lines (23 loc) • 848 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatBytes = exports.ellipsis = void 0;
function ellipsis(str, length) {
return str.length > length ? str.slice(0, length) + "..." : str;
}
exports.ellipsis = ellipsis;
function formatBytes(bytes, decimals = 2) {
//
try {
if (bytes === 0)
return "0 Bytes";
const k = 1000;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + " " + sizes[i];
}
catch (error) {
throw new Error(`formatBytes failed: ${error instanceof Error ? error.message : "Unknown error"}`);
}
}
exports.formatBytes = formatBytes;