(file: File)
| 75 | } |
| 76 | |
| 77 | function isVideoFile(file: File) { |
| 78 | if (file?.name?.endsWith(".webm")) { |
| 79 | return true; |
| 80 | } |
| 81 | if (file?.name?.endsWith(".mp4")) { |
| 82 | return true; |
| 83 | } |
| 84 | |
| 85 | return false; |
| 86 | } |
nothing calls this directly
no outgoing calls
no test coverage detected