(filename: string)
| 49 | } |
| 50 | |
| 51 | function guessMimeType(filename: string): string { |
| 52 | const ext = extname(filename).toLowerCase() |
| 53 | return MIME_BY_EXT[ext] ?? 'application/octet-stream' |
| 54 | } |
| 55 | |
| 56 | function debug(msg: string): void { |
| 57 | logForDebugging(`[brief:upload] ${msg}`) |
no outgoing calls
no test coverage detected