mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-05 22:05:50 +00:00
4 lines
156 B
JavaScript
4 lines
156 B
JavaScript
module.exports = function getenv(variable, defaultValue = null) {
|
|
return process.env[variable] !== undefined ? process.env[variable] : defaultValue;
|
|
};
|