(s: SkillSearchResult)
| 507 | const indexWidth = data.results.length.toString().length; |
| 508 | const nameWithRepo = (s: SkillSearchResult) => `${s.name} ${pc.dim(`(${s.project})`)}`; |
| 509 | const nameWithRepoLen = (s: SkillSearchResult) => `${s.name} (${s.project})`.length; |
| 510 | const maxNameLen = Math.max(...data.results.map(nameWithRepoLen)); |
| 511 | const popularityColWidth = 13; |
| 512 | const choices = data.results.map((s, index) => { |
no outgoing calls
no test coverage detected