(response, index, size)
| 75 | const UA_HEADERS = Object.keys(UA_GETTERS); |
| 76 | |
| 77 | function blob2chunk(response, index, size) { |
| 78 | return blob2base64(response, index * size, size); |
| 79 | } |
| 80 | |
| 81 | function blob2objectUrl(response) { |
| 82 | const url = URL.createObjectURL(response); |
nothing calls this directly
no test coverage detected