MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / executeStep5

Function executeStep5

background/steps/fill-profile.js:12–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10 } = deps;
11
12 async function executeStep5() {
13 const { firstName, lastName } = generateRandomName();
14 const { year, month, day } = generateRandomBirthday();
15
16 await addLog(`步骤 5:已生成姓名 ${firstName} ${lastName},生日 ${year}-${month}-${day}`);
17
18 await sendToContentScript('signup-page', {
19 type: 'EXECUTE_STEP',
20 step: 5,
21 source: 'background',
22 payload: { firstName, lastName, year, month, day },
23 });
24 }
25
26 return { executeStep5 };
27 }

Callers

nothing calls this directly

Calls 4

generateRandomNameFunction · 0.85
generateRandomBirthdayFunction · 0.85
addLogFunction · 0.50
sendToContentScriptFunction · 0.50

Tested by

no test coverage detected