eximiabots-radiox/src/client/funcs/checkFetchStatus.js
2021-09-12 17:37:43 +03:00

8 lines
235 B
JavaScript

module.exports = function checkFetchStatus(response) {
if (response.ok) { // res.status >= 200 && res.status < 300
return response;
} else {
throw new Error(response.status + " " + response.statusText);
}
}