Display env var nicely

This commit is contained in:
Julien Bisconti 2020-04-13 17:54:25 +02:00
parent fd49c3a59d
commit 0b371c8aca
No known key found for this signature in database
GPG Key ID: 62772C6698F736CB

View File

@ -6,7 +6,7 @@ function envvar_undefined(variable_name) {
throw new Error(`${variable_name} must be defined`);
}
console.log({
DEBUG: process.env.DEBUG,
DEBUG: process.env.DEBUG || false,
});
const README = 'README.md';