(block: BlockState | undefined)
| 14 | } |
| 15 | |
| 16 | function isContainerBlock(block: BlockState | undefined): boolean { |
| 17 | return block?.type === 'loop' || block?.type === 'parallel' |
| 18 | } |
| 19 | |
| 20 | function getParentId(block: BlockState | undefined): string | null { |
| 21 | return block?.data?.parentId ?? null |
no outgoing calls
no test coverage detected