MCPcopy Create free account
hub / github.com/cursor/plugins / formatIssuePath

Function formatIssuePath

orchestrate/skills/orchestrate/scripts/schemas.ts:709–715  ·  view source on GitHub ↗
(path: (string | number)[])

Source from the content-addressed store, hash-verified

707}
708
709function formatIssuePath(path: (string | number)[]): string {
710 if (path.length === 0) return "(root)";
711 return path.reduce<string>((out, part) => {
712 if (typeof part === "number") return `${out}[${part}]`;
713 return out ? `${out}.${part}` : part;
714 }, "");
715}

Callers 1

formatZodIssuesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected