Dep update

This commit is contained in:
2025-04-08 22:00:41 +02:00
committed by Philipp Horstenkamp
parent f79e41cbfe
commit 78549e06b4
966 changed files with 43637 additions and 158248 deletions

View File

@ -0,0 +1,3 @@
'use strict';
module.exports = FormData;

View File

@ -0,0 +1,5 @@
'use strict';
var AxiosURLSearchParams = require('../../../helpers/AxiosURLSearchParams');
module.exports = typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;

11
node_modules/axios/lib/platform/browser/index.js generated vendored Normal file
View File

@ -0,0 +1,11 @@
'use strict';
module.exports = {
isBrowser: true,
classes: {
URLSearchParams: require('./classes/URLSearchParams'),
FormData: require('./classes/FormData'),
Blob: Blob
},
protocols: ['http', 'https', 'file', 'blob', 'url', 'data']
};