(fileUrl)
| 18 | } |
| 19 | |
| 20 | export function getFileName(fileUrl) { |
| 21 | return fileUrl.substring(fileUrl.lastIndexOf('/') + 1).replace(/\.[^/.]+$/, ''); |
| 22 | } |
| 23 | |
| 24 | export function getFileFullName(fileUrl) { |
| 25 | return fileUrl.split('/').pop(); |
nothing calls this directly
no outgoing calls
no test coverage detected