package.lib.platform.node.index.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axios Show documentation
Show all versions of axios Show documentation
Promise based HTTP client for the browser and node.js
import URLSearchParams from './classes/URLSearchParams.js'
import FormData from './classes/FormData.js'
export default {
isNode: true,
classes: {
URLSearchParams,
FormData,
Blob: typeof Blob !== 'undefined' && Blob || null
},
protocols: [ 'http', 'https', 'file', 'data' ]
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy