5f55603fb2
* send recsys powered-by * update lighthouse call in useLighthouse * rename select selectors * update channel search too
9 lines
324 B
JavaScript
9 lines
324 B
JavaScript
// @flow
|
|
export default function handleFetchResponse(response: Response): Promise<any> {
|
|
const headers = response.headers;
|
|
const poweredBy = headers.get('x-powered-by');
|
|
|
|
return response.status === 200
|
|
? response.json().then((body) => ({ body, poweredBy }))
|
|
: Promise.reject(new Error(response.statusText));
|
|
}
|