(graph)
| 240 | } |
| 241 | |
| 242 | function translateGraph(graph) { |
| 243 | return { |
| 244 | name: graph.name, |
| 245 | nodes: list2map(graph.nodes) || {}, |
| 246 | inputs: list2map(graph.inputs) || {}, |
| 247 | outputs: list2map(graph.outputs) || {}, |
| 248 | connections: graph.connections || [], |
| 249 | }; |
| 250 | } |
| 251 | |
| 252 | function translateConfig(config) { |
| 253 | return { |
no test coverage detected