(filePath: string, suffix?: string)
| 186 | } |
| 187 | |
| 188 | function readBaseNameIfMeaningful(filePath: string, suffix?: string): string | undefined { |
| 189 | const basename = suffix |
| 190 | ? path.basename(filePath, suffix) |
| 191 | : path.basename(filePath, path.extname(filePath)); |
| 192 | return basename && basename !== 'artifact' ? basename : undefined; |
| 193 | } |
| 194 | |
| 195 | function normalizeArchiveExtension( |
| 196 | archivePath: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…