(file: string)
| 154 | } |
| 155 | |
| 156 | function info(file: string): Item { |
| 157 | const item = full(file) |
| 158 | const n = name(item) |
| 159 | return { |
| 160 | path: item, |
| 161 | name: resolve(n) ? n : item, |
| 162 | acceptable: ok(item), |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | export function args(file: string, command: string, cwd: string) { |
| 167 | const n = name(file) |
no test coverage detected