()
| 16 | * Creates a regex pattern for matching environment variables {{variable}} |
| 17 | */ |
| 18 | export function createEnvVarPattern(): RegExp { |
| 19 | return new RegExp(`\\${REFERENCE.ENV_VAR_START}([^}]+)\\${REFERENCE.ENV_VAR_END}`, 'g') |
| 20 | } |
| 21 | |
| 22 | export interface EnvVarResolveOptions { |
| 23 | allowEmbedded?: boolean |
no outgoing calls
no test coverage detected