Run npm-install and add npm install as a post update option
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m19s

This commit is contained in:
2025-12-16 01:01:56 +01:00
parent 9510650dd1
commit 786d2c8e74
1036 changed files with 44950 additions and 158791 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']
};

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

@@ -0,0 +1,3 @@
'use strict';
module.exports = require('./node/');

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = require('form-data');

View File

@@ -0,0 +1,5 @@
'use strict';
var url = require('url');
module.exports = url.URLSearchParams;

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

@@ -0,0 +1,11 @@
'use strict';
module.exports = {
isNode: true,
classes: {
URLSearchParams: require('./classes/URLSearchParams'),
FormData: require('./classes/FormData'),
Blob: typeof Blob !== 'undefined' && Blob || null
},
protocols: [ 'http', 'https', 'file', 'data' ]
};