(names: Iterable<string>)
| 79 | } |
| 80 | |
| 81 | function sortToolNames(names: Iterable<string>): string[] { |
| 82 | return sortToolsByPolicy([...new Set(names)].map(name => ({ name }))).map( |
| 83 | tool => tool.name, |
| 84 | ) |
| 85 | } |
| 86 | |
| 87 | export function buildToolInventory({ |
| 88 | baseTools, |
no test coverage detected