(response)
| 88 | * @returns {Promise<string>} |
| 89 | */ |
| 90 | export async function makeRaw(response) { |
| 91 | const type = (response.headers.get('content-type') || '').split(';')[0] || ''; |
| 92 | const body = await blob2base64(response.data); |
| 93 | return `${type},${body}`; |
| 94 | } |
| 95 | |
| 96 | export function loadQuery(string) { |
| 97 | const res = {}; |
no test coverage detected