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

Open
Vylpes wants to merge 11 commits from feature/181-q-json-flags into develop
Showing only changes of commit eb09754e2e - Show all commits

View file

@ -5,7 +5,7 @@ export default class OutputHelper {
public static GenerateOutput(response: IReturnResult, options: ICliOptions): string {
const result = response.Result!;
let outputObject: any = {};
let outputObject = {};
outputObject = { ...result };