(mimeType: string)
| 187 | } |
| 188 | |
| 189 | function isTextDocumentMimeType(mimeType: string): boolean { |
| 190 | return ( |
| 191 | mimeType.startsWith('text/') || |
| 192 | mimeType === 'application/json' || |
| 193 | mimeType === 'application/xml' || |
| 194 | mimeType === 'application/x-yaml' |
| 195 | ) |
| 196 | } |
| 197 | |
| 198 | function isImageMimeType(mimeType: string): boolean { |
| 199 | return MODEL_SUPPORTED_IMAGE_MIME_TYPES.has(mimeType) |
no outgoing calls
no test coverage detected