| 12345678910111213141516171819202122232425262728 |
- import type { AxiosHeaderValue, AxiosResponse, InternalAxiosRequestConfig } from 'axios';
- export function getContentType(config: InternalAxiosRequestConfig) {
- const contentType: AxiosHeaderValue = config.headers?.['Content-Type'] || 'application/json';
- return contentType;
- }
- /**
- * check if http status is success
- *
- * @param status
- */
- export function isHttpSuccess(status: number) {
- const isSuccessCode = status >= 200 && status < 300;
- return isSuccessCode || status === 304;
- }
- /**
- * is response json
- *
- * @param response axios response
- */
- export function isResponseJson(response: AxiosResponse) {
- const { responseType } = response.config;
- return responseType === 'json' || responseType === undefined;
- }
|