(type: string | undefined)
| 8 | } |
| 9 | |
| 10 | function isContainerType(type: string | undefined): boolean { |
| 11 | return type === 'loop' || type === 'parallel' |
| 12 | } |
| 13 | |
| 14 | export function normalizeWorkflowState(workflowState: WorkflowState): NormalizationResult { |
| 15 | const warnings: string[] = [] |
no outgoing calls
no test coverage detected