(replace: Replace, value: string)
| 74 | } |
| 75 | |
| 76 | function resolveString(replace: Replace, value: string): string { |
| 77 | // loop through all variables occurrences in 'value' |
| 78 | return value.replace(VARIABLE_REGEXP, evaluateSingleVariable.bind(undefined, replace)); |
| 79 | } |
| 80 | |
| 81 | function evaluateSingleVariable(replace: Replace, match: string, variable: string): string { |
| 82 |
no outgoing calls
no test coverage detected