2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

fix: revert named exports

This commit is contained in:
Jay
2022-10-07 10:43:43 +02:00
parent a46beab152
commit 9fc94b7dcd
2 changed files with 1 additions and 15 deletions
-3
View File
@@ -14,7 +14,6 @@ import toFormData from './helpers/toFormData.js';
import AxiosError from './core/AxiosError.js';
import spread from './helpers/spread.js';
import isAxiosError from './helpers/isAxiosError.js';
import AxiosHeaders from './core/AxiosHeaders.js';
/**
* Create an instance of Axios
@@ -74,6 +73,4 @@ axios.formToJSON = thing => {
return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);
};
axios.AxiosHeaders = AxiosHeaders;
export default axios