redbadger/website-honestly

View on GitHub
site/fetchers/util/handle-errors.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @flow

export default function HandleErrors(response: Response) {
  if (response.ok) return response;
  throw Error(response.statusText);
}