Fix bug where you weren't able to use both the -q and -j flags at the same time #227

Merged
Vylpes merged 17 commits from feature/181-q-json-flags into develop 2024-12-07 22:21:43 +00:00
Showing only changes of commit 49d986de05 - Show all commits

View file

@ -20,8 +20,9 @@ export default class OutputHelper {
return this.GetFriendlyObjectText(outputObject, ""); return this.GetFriendlyObjectText(outputObject, "");
} }
/* eslint-disable @typescript-eslint/no-explicit-any */
private static GetFriendlyObjectText(object: any, output: string, prefix: string = ""): string { private static GetFriendlyObjectText(object: any, output: string, prefix: string = ""): string {
for (let key in object) { for (const key in object) {
if (typeof(object[key]) == "object") return this.GetFriendlyObjectText(object[key], output, `${key}.`); if (typeof(object[key]) == "object") return this.GetFriendlyObjectText(object[key], output, `${key}.`);
output += `${prefix}${key} = ${object[key]}\n`; output += `${prefix}${key} = ${object[key]}\n`;
@ -34,4 +35,5 @@ export default class OutputHelper {
a[target] = { ...b }; a[target] = { ...b };
return a; return a;
} }
/* eslint-enable @typescript-eslint/no-explicit-any */
} }