(obj: T, currentPath?: string)
| 10 | * @throws {EnvVarResolutionError} If an environment variable reference cannot be resolved |
| 11 | */ |
| 12 | export function resolveEnvVarRefs<T>(obj: T, currentPath?: string): T { |
| 13 | return resolveEnvVarRefsFromMap(obj, process.env, currentPath) |
| 14 | } |
no test coverage detected