(value: string)
| 414 | } |
| 415 | |
| 416 | export function isEnvVarReference(value: string): boolean { |
| 417 | return value.startsWith(REFERENCE.ENV_VAR_START) && value.endsWith(REFERENCE.ENV_VAR_END) |
| 418 | } |
| 419 | |
| 420 | export function extractEnvVarName(reference: string): string { |
| 421 | return reference.substring( |
no outgoing calls
no test coverage detected