Read a static output's binding from a node's arguments bag, keyed by the output id.
(args: Record<string, unknown>, outputId: string)
| 10 | |
| 11 | /** Read a static output's binding from a node's arguments bag, keyed by the output id. */ |
| 12 | function getStaticBinding(args: Record<string, unknown>, outputId: string): OutputBinding | undefined { |
| 13 | return args[outputId] as OutputBinding | undefined; |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Read-only helper: look up the current binding for a given output key on any node. |
no outgoing calls
no test coverage detected