This commit is contained in:
2022-06-06 21:18:22 -05:00
parent 43d31fdffb
commit 4fdf72cca8
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ ${Object.keys(meta)
let key_str = key in keyConversion
? keyConversion[key]
: key;
key_str = key_str.padStart(12, ' ');
key_str = key_str.padEnd(12, ' ');
if (typeof val === 'boolean') {
if (val)
return `// @${key_str}`;