MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / fetchGetResponseHeaders

Function fetchGetResponseHeaders

src/Fetch.js:871–874  ·  view source on GitHub ↗
(id, dst, dstSizeBytes)

Source from the content-addressed store, hash-verified

869}
870
871function 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.
877function fetchFree(id) {

Callers

nothing calls this directly

Calls 2

getAllResponseHeadersMethod · 0.80
getMethod · 0.65

Tested by

no test coverage detected