(loopId: string)
| 20 | * Builds the loop sentinel-end node ID for a container. |
| 21 | */ |
| 22 | export function buildSentinelEndId(loopId: string): string { |
| 23 | return SubflowNodeIdCodec.buildLoopSentinelEndId(loopId) |
| 24 | } |
| 25 | |
| 26 | export function buildParallelSentinelStartId(parallelId: string): string { |
| 27 | return SubflowNodeIdCodec.buildParallelSentinelStartId(parallelId) |
no outgoing calls
no test coverage detected