(content: string)
| 26 | } |
| 27 | |
| 28 | export function isBase64(content: string): boolean { |
| 29 | return content.startsWith('base64::') |
| 30 | } |
| 31 | |
| 32 | export function getBinaryFile(content: string): string | null { |
| 33 | if (content.startsWith('base64::')) { |
no outgoing calls
no test coverage detected