(executionContext: FlowExecutionContext | undefined, ...args: any[])
| 36 | }; |
| 37 | |
| 38 | const hotPathLog = (executionContext: FlowExecutionContext | undefined, ...args: any[]) => { |
| 39 | if (executionContext) { |
| 40 | flowExecutionDebugLog(executionContext, ...args); |
| 41 | return; |
| 42 | } |
| 43 | |
| 44 | console.log(...args); |
| 45 | }; |
| 46 | |
| 47 | const getNodeConfig = <T>(config: unknown, textValue: string): T | undefined => { |
| 48 | if (config !== undefined) { |
no test coverage detected