(name: string)
| 12 | } |
| 13 | |
| 14 | export function getBinaryNames(name: string) { |
| 15 | if (process.platform !== `win32`) |
| 16 | return [name]; |
| 17 | |
| 18 | return [ |
| 19 | `${name}`, |
| 20 | `${name}.CMD`, |
| 21 | `${name}.ps1`, |
| 22 | ]; |
| 23 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…