(nodeId: string, outputId: string)
| 36 | |
| 37 | /** Key for a node output variable: `<nodeId>:<outputId>` */ |
| 38 | export function nodeOutputVarKey(nodeId: string, outputId: string): string { |
| 39 | return `${nodeId}:${outputId}`; |
| 40 | } |
| 41 | |
| 42 | // ============================================================================ |
| 43 | // Reference → Lookup Key |
no outgoing calls
no test coverage detected