(inputs?: BuildStepInput[])
| 232 | } |
| 233 | |
| 234 | export function makeBuildStepInputByIdMap(inputs?: BuildStepInput[]): BuildStepInputById { |
| 235 | if (inputs === undefined) { |
| 236 | return {}; |
| 237 | } |
| 238 | return inputs.reduce((acc, input) => { |
| 239 | acc[input.id] = input; |
| 240 | return acc; |
| 241 | }, {} as BuildStepInputById); |
| 242 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…