({ name, path, topics })
| 70 | `; |
| 71 | |
| 72 | const writeSection = ({ name, path, topics }) => |
| 73 | `## ${name} |
| 74 | ${topics.map( writeTopic ).join('')} |
| 75 | `; |
| 76 | |
| 77 | const writeTopic = ({ name, path, files, tests }) => |
| 78 | `### ${reverseDashCase(name)} |
nothing calls this directly
no outgoing calls
no test coverage detected