(filePath: string)
| 16 | }; |
| 17 | |
| 18 | export const getFileName = (filePath: string) => { |
| 19 | const fileName: string = filePath.split("/").pop()!; |
| 20 | return fileName; |
| 21 | }; |
| 22 | |
| 23 | export const getFileInfo = (filePath: string) => { |
| 24 | const fileName = getFileName(filePath); |
no outgoing calls
no test coverage detected