(id)
| 865 | } |
| 866 | |
| 867 | function fetchGetResponseHeadersLength(id) { |
| 868 | return lengthBytesUTF8(Fetch.xhrs.get(id).getAllResponseHeaders()); |
| 869 | } |
| 870 | |
| 871 | function fetchGetResponseHeaders(id, dst, dstSizeBytes) { |
| 872 | var responseHeaders = Fetch.xhrs.get(id).getAllResponseHeaders(); |
nothing calls this directly
no test coverage detected