(data: ArrayBuffer, type: AttachmentMIMEType)
| 2 | import base64 from "base64-js"; |
| 3 | |
| 4 | export function encodeDataURL(data: ArrayBuffer, type: AttachmentMIMEType) { |
| 5 | const b64String = base64.fromByteArray(new Uint8Array(data)); |
| 6 | return `data:${type};base64,${b64String}`; |
| 7 | } |
no outgoing calls
no test coverage detected