(names: Iterable<string>)
| 29 | } |
| 30 | |
| 31 | function sortToolNames(names: Iterable<string>): string[] { |
| 32 | return sortToolsByPolicy([...new Set(names)].map(name => ({ name }))).map( |
| 33 | tool => tool.name, |
| 34 | ) |
| 35 | } |
| 36 | |
| 37 | function collectGap( |
| 38 | entries: readonly ToolInventoryEntry[], |
no test coverage detected