MCPcopy Create free account
hub / github.com/expo/eas-cli / makeBuildStepInputByIdMap

Function makeBuildStepInputByIdMap

packages/steps/src/BuildStepInput.ts:234–242  ·  view source on GitHub ↗
(inputs?: BuildStepInput[])

Source from the content-addressed store, hash-verified

232}
233
234export 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}

Callers 3

constructorMethod · 0.90
constructorMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…