* Gets environment variables needed in the browser. * @param {Request} req - the request * @param {Response} res - the result
(req, res)
| 247 | * @param {Response} res - the result |
| 248 | */ |
| 249 | function getEnvVars (req, res) { |
| 250 | const obj = getEnvVarsAsObj(); |
| 251 | res.send(obj); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Get the config file path from environment or default location |
nothing calls this directly
no test coverage detected