(id, dst, dstSizeBytes)
| 869 | } |
| 870 | |
| 871 | function fetchGetResponseHeaders(id, dst, dstSizeBytes) { |
| 872 | var responseHeaders = Fetch.xhrs.get(id).getAllResponseHeaders(); |
| 873 | return stringToUTF8(responseHeaders, dst, dstSizeBytes) + 1; |
| 874 | } |
| 875 | |
| 876 | // Delete the xhr JS object, allowing it to be garbage collected. |
| 877 | function fetchFree(id) { |
nothing calls this directly
no test coverage detected