| 2 | import { decodeResource } from '@/injected/content/util'; |
| 3 | |
| 4 | const stringAsBase64 = str => btoa(buffer2string(new TextEncoder().encode(str).buffer)); |
| 5 | |
| 6 | const blobAsText = async blob => new TextDecoder().decode(await readBlob(blob, true)); |
| 7 |
no test coverage detected