(ext?: string)
| 273 | } |
| 274 | |
| 275 | export function normalizeExt(ext?: string): string | undefined { |
| 276 | return ext ? path.parse(`foo.${ext}`).ext : ext |
| 277 | } |
| 278 | |
| 279 | // prettier-ignore |
| 280 | function getFilepath(cwd = '.', name = 'zx', _ext?: string): string { |
no test coverage detected
searching dependent graphs…