Init. Map does not function and only working on backend at the moment.
This commit is contained in:
3
node_modules/axios/lib/platform/node/classes/FormData.js
generated
vendored
Normal file
3
node_modules/axios/lib/platform/node/classes/FormData.js
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import FormData from 'form-data';
|
||||
|
||||
export default FormData;
|
4
node_modules/axios/lib/platform/node/classes/URLSearchParams.js
generated
vendored
Normal file
4
node_modules/axios/lib/platform/node/classes/URLSearchParams.js
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
'use strict';
|
||||
|
||||
import url from 'url';
|
||||
export default url.URLSearchParams;
|
12
node_modules/axios/lib/platform/node/index.js
generated
vendored
Normal file
12
node_modules/axios/lib/platform/node/index.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
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' ]
|
||||
};
|
Reference in New Issue
Block a user