We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a0018 commit bfad89eCopy full SHA for bfad89e
lib/commands/config.ts
@@ -38,7 +38,7 @@ export class ConfigListCommand implements ICommand {
38
.join("\n")
39
);
40
} else {
41
- return color.yellow(value.toString());
+ return color.yellow(typeof value === 'undefined' ? 'undefined' : value.toString());
42
}
43
44
0 commit comments