2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

feat(fomdata): added support for spec-compliant FormData & Blob types; (#5316)

This commit is contained in:
Dmitriy Mozgovoy
2023-01-31 01:10:39 +02:00
committed by GitHub
parent 65e8d1e28c
commit 6ac574e00a
9 changed files with 303 additions and 54 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
import FormData from 'form-data';
export default FormData;
import _FormData from 'form-data';
export default typeof FormData !== 'undefined' ? FormData : _FormData;