Blob to base64
yarn add @maruware/blob-to-base64
import { blobToBase64 } from '@maruware/blob-to-base64'
(async () => {
const b64 = await blobToBase64(blob)
})()import { blobToDataUrl } from '@maruware/blob-to-base64'
(async () => {
const dataUrl = await blobToDataUrl(blob)
})()