(file: { name: string; type: string })
| 41 | } |
| 42 | |
| 43 | export function isPdf(file: { name: string; type: string }) { |
| 44 | return accept(file, 'application/pdf'); |
| 45 | } |
| 46 | |
| 47 | export function isGif(file: { name: string; type: string }) { |
| 48 | return accept(file, 'image/gif'); |
no outgoing calls
no test coverage detected