( originalId: string, currentNodeId: string, executionMap: Map<string, unknown>, mappedBranchIndex?: number )
| 126 | * Returns the effective ID (cloned or original) that exists in the map. |
| 127 | */ |
| 128 | export function findEffectiveContainerId( |
| 129 | originalId: string, |
| 130 | currentNodeId: string, |
| 131 | executionMap: Map<string, unknown>, |
| 132 | mappedBranchIndex?: number |
| 133 | ): string { |
| 134 | return SubflowNodeIdCodec.findEffectiveContainerId( |
| 135 | originalId, |
| 136 | currentNodeId, |
| 137 | executionMap, |
| 138 | mappedBranchIndex |
| 139 | ) |
| 140 | } |
| 141 | |
| 142 | export function normalizeNodeId(nodeId: string): string { |
| 143 | return SubflowNodeIdCodec.normalizeNodeId(nodeId) |
no outgoing calls
no test coverage detected