Automaticly fixable eslint issues, mostly 3 -> 2 space indentation

This commit is contained in:
2022-08-19 10:41:44 +02:00
parent 11fb803838
commit 2aace85418
62 changed files with 498 additions and 375 deletions

View File

@@ -1,15 +1,15 @@
class EnvironmentVariables {
constructor(variables) {
this.variables = variables || process.env;
}
constructor(variables) {
this.variables = variables || process.env;
}
get(variable) {
return this.variables[variable];
}
get(variable) {
return this.variables[variable];
}
has(variable) {
return this.get(variable) !== undefined;
}
has(variable) {
return this.get(variable) !== undefined;
}
}
module.exports = EnvironmentVariables;