(path: string)
| 164 | } |
| 165 | |
| 166 | private getFileName(path: string): string { |
| 167 | return path.split('/').pop() || ''; |
| 168 | } |
| 169 | |
| 170 | private getBaseName(path: string): string { |
| 171 | const fileName = this.getFileName(path); |
no outgoing calls
no test coverage detected