mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
* feat: adds support for different std out and err streams * feat: adds std to json * fixes tests * fixes deprecated code * fixes download * adds defineEmit as an option * chore: updates modules * adds ui elements * fixes tests * updates languages
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
export function formatBytes(bytes: number, decimals = 2) {
|
|
if (bytes === 0) return "0 Bytes";
|
|
const k = 1024;
|
|
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];
|
|
}
|
|
|
|
export function getDeep(obj: Record<string, any>, path: string[]) {
|
|
return path.reduce((acc, key) => acc?.[key], obj);
|
|
}
|
|
|
|
export function isObject(value: any): value is Record<string, any> {
|
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
}
|
|
|
|
export function flattenJSON(obj: Record<string, any>, path: string[] = []) {
|
|
const result: Record<string, any> = {};
|
|
Object.keys(obj).forEach((key) => {
|
|
const value = obj[key];
|
|
const newPath = path.concat(key);
|
|
if (isObject(value)) {
|
|
Object.assign(result, flattenJSON(value, newPath));
|
|
} else {
|
|
result[newPath.join(".")] = value;
|
|
}
|
|
});
|
|
return result;
|
|
}
|
|
|
|
export function arrayEquals(a: string[], b: string[]): boolean {
|
|
return Array.isArray(a) && Array.isArray(b) && a.length === b.length && a.every((val, index) => val === b[index]);
|
|
}
|
|
|
|
export function stripVersion(label: string) {
|
|
const [name, _] = label.split(":");
|
|
return name;
|
|
}
|