(env: Record<string, string>)
| 324 | } |
| 325 | |
| 326 | private expandEnv(env: Record<string, string>): Record<string, string> { |
| 327 | // Delegated to a tested utility — see src/utils/env-expand.ts |
| 328 | // Supports: $VAR, ${VAR}, $$ escape, and partial substitution inside larger strings. |
| 329 | return expandEnvObject(env); |
| 330 | } |
| 331 | |
| 332 | private expandHeaders(headers: Record<string, string>): Record<string, string> { |
| 333 | return this.expandEnv(headers); |
no test coverage detected