(outputs?: BuildStepOutput[])
| 93 | } |
| 94 | |
| 95 | export function makeBuildStepOutputByIdMap(outputs?: BuildStepOutput[]): BuildStepOutputById { |
| 96 | if (outputs === undefined) { |
| 97 | return {}; |
| 98 | } |
| 99 | return outputs.reduce((acc, output) => { |
| 100 | acc[output.id] = output; |
| 101 | return acc; |
| 102 | }, {} as BuildStepOutputById); |
| 103 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…