(config: C, notFoundValue: any = "")
| 18 | * Does not mutate original object |
| 19 | */ |
| 20 | export async function injectEnv<C extends InjectableConfigType>(config: C, notFoundValue: any = "") { |
| 21 | return injectVariables(config, { env: process.env }, notFoundValue) |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Deeply injects variables into a configuration object/string/json |
no test coverage detected