refactor: code cleanup

This commit is contained in:
Dylan R. E. Moonfire 2021-02-03 22:58:39 -06:00
parent 26bc187113
commit a6c66e3278
2 changed files with 7 additions and 4 deletions

View file

@ -34,7 +34,8 @@ export function handler(argv: any)
if (argv.output === "-")
{
console.log(output);
} else {
} else
{
fs.writeFileSync(argv.output, Buffer.from(output, "utf-8"));
}
}

View file

@ -62,10 +62,11 @@ export function handler(argv: any)
} else if (argv.content !== "__content")
{
// Rename the content property.
data.forEach(x => {
data.forEach(x =>
{
x[argv.content] = x.__content;
delete x.__content;
})
});
}
// Determine if we are displaying a list of items. If we want a list, then
@ -84,7 +85,8 @@ export function handler(argv: any)
if (argv.output === "-")
{
console.log(output);
} else {
} else
{
fs.writeFileSync(argv.output, Buffer.from(output, "utf-8"));
}
}