(url: string, contentType?: string)
| 125 | ); |
| 126 | } |
| 127 | function isSvgFile(url: string, contentType?: string): boolean { |
| 128 | return url.toLowerCase().endsWith('.svg') || contentType === 'image/svg+xml'; |
| 129 | } |
| 130 | |
| 131 | // Process image with Sharp (resize to 30x30 PNG) |
| 132 | async function processImage( |
no outgoing calls
no test coverage detected