We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936e9d7 commit c2aea26Copy full SHA for c2aea26
src/fetch.js
@@ -37,7 +37,7 @@ export function fetchImpl(url, { onNext, onComplete, onError, ...fetchOptions })
37
});
38
} else {
39
return response.json().then((json) => {
40
- onNext([json]);
+ onNext([json], { responseHeaders: response.headers });
41
onComplete();
42
43
}
0 commit comments