mirror of
https://github.com/tenrok/axios.git
synced 2026-06-11 18:02:32 +03:00
d17d9a66c5
Co-authored-by: Jay <jasonsaayman@gmail.com>
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
import URLSearchParams from './classes/URLSearchParams.js'
|
|
import FormData from './classes/FormData.js'
|
|
|
|
export default {
|
|
isBrowser: true,
|
|
classes: {
|
|
URLSearchParams,
|
|
FormData,
|
|
Blob
|
|
},
|
|
protocols: ['http', 'https', 'file', 'blob', 'url', 'data']
|
|
};
|