28 lines
590 B
TypeScript
28 lines
590 B
TypeScript
import { indexOf } from 'lodash';
|
|
|
|
export const filter = (i: any, arr: any[]) => {
|
|
return -1 !== indexOf(arr, i) ? true : false;
|
|
};
|
|
|
|
export function checkHttpStatus(response) {
|
|
if (response.status >= 200 && response.status < 300) {
|
|
return response;
|
|
} else {
|
|
return new Error(response.statusText);
|
|
}
|
|
}
|
|
|
|
export function parseJSON(response) {
|
|
return response.json();
|
|
}
|
|
|
|
export async function handleJSONResponse(response, errorMessage) {
|
|
if (response.ok) {
|
|
return await response.json();
|
|
}
|
|
if (errorMessage) {
|
|
throw new Error(errorMessage);
|
|
}
|
|
return false;
|
|
}
|