Merge codeday/jason => codeday/isai

This commit is contained in:
Jason Casareno
2022-08-01 14:46:06 -07:00
6 changed files with 28 additions and 24 deletions

View File

@@ -12,11 +12,10 @@ export type Environment = {
export type Variables = {
key: string
value: string
}[]
}[]
const REGEX_ENV_VAR = /<<([^>]*)>>/g // "<<myVariable>>"
const REGEX_PATHVAR = /{{([^>]*)}}/g // "{{myVariable}}"
const REGEX_PATH_VAR = /{{([^>]*)}}/g // "{{myVariable}}"
/**
* How much times can we expand environment variables