(value: string)
| 239 | const ENV_VAR_PATTERN = /^\{\{([^}]+)\}\}$/ |
| 240 | |
| 241 | function isEnvVarReference(value: string): boolean { |
| 242 | return ENV_VAR_PATTERN.test(value) |
| 243 | } |
| 244 | |
| 245 | function extractEnvVarName(value: string): string | null { |
| 246 | const match = ENV_VAR_PATTERN.exec(value) |
no test coverage detected