fix(Processor): correct variable matching regex

This commit is contained in:
Ali BARIN
2022-09-27 17:22:31 +02:00
parent 620629ff8b
commit d97fab28e3

View File

@@ -17,7 +17,7 @@ class Processor {
untilStep?: Step;
testRun?: boolean;
static variableRegExp = /({{step\..+\..+}})/g;
static variableRegExp = /({{step\.[\da-zA-Z-]+(?:\.[\da-zA-Z-]+)+}})/g;
constructor(flow: Flow, processorOptions: ProcessorOptions) {
this.flow = flow;