(value: string)
| 410 | } |
| 411 | |
| 412 | export function isReference(value: string): boolean { |
| 413 | return value.startsWith(REFERENCE.START) && value.endsWith(REFERENCE.END) |
| 414 | } |
| 415 | |
| 416 | export function isEnvVarReference(value: string): boolean { |
| 417 | return value.startsWith(REFERENCE.ENV_VAR_START) && value.endsWith(REFERENCE.ENV_VAR_END) |
no outgoing calls
no test coverage detected