(mime: string)
| 145 | } |
| 146 | |
| 147 | function extFromMime(mime: string): string { |
| 148 | return MIME_TO_EXT[mime] || mime.split('/')[1] || 'bin' |
| 149 | } |
| 150 | |
| 151 | function mimeFromExt(ext: string): string { |
| 152 | return EXT_TO_MIME[ext] || 'application/octet-stream' |
no outgoing calls
no test coverage detected