(mimeType: string, base64: string)
| 268 | } |
| 269 | |
| 270 | function toDataUrl(mimeType: string, base64: string): string { |
| 271 | return `data:${mimeType};base64,${base64}` |
| 272 | } |
| 273 | |
| 274 | function isMimeTypeSupportedByProvider( |
| 275 | provider: AttachmentProvider, |
no outgoing calls
no test coverage detected