jsketcher/modules/network/checkHttpResponseStatus.ts
2020-05-21 17:23:07 -07:00

9 lines
196 B
TypeScript

import {createHttpError} from "network/createHttpError";
export function checkHttpResponseStatus(res: Response) {
if (res.ok) {
return res;
} else {
throw createHttpError(res);
}
}