go integration and wikipedia
This commit is contained in:
parent
47a252e339
commit
ee90335b92
7828 changed files with 1307913 additions and 20807 deletions
3
frontend/node_modules/axios/lib/platform/browser/classes/Blob.js
generated
vendored
Normal file
3
frontend/node_modules/axios/lib/platform/browser/classes/Blob.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
'use strict';
|
||||
|
||||
export default typeof Blob !== 'undefined' ? Blob : null;
|
||||
3
frontend/node_modules/axios/lib/platform/browser/classes/FormData.js
generated
vendored
Normal file
3
frontend/node_modules/axios/lib/platform/browser/classes/FormData.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
'use strict';
|
||||
|
||||
export default typeof FormData !== 'undefined' ? FormData : null;
|
||||
4
frontend/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js
generated
vendored
Normal file
4
frontend/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
'use strict';
|
||||
|
||||
import AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';
|
||||
export default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;
|
||||
13
frontend/node_modules/axios/lib/platform/browser/index.js
generated
vendored
Normal file
13
frontend/node_modules/axios/lib/platform/browser/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import URLSearchParams from './classes/URLSearchParams.js';
|
||||
import FormData from './classes/FormData.js';
|
||||
import Blob from './classes/Blob.js';
|
||||
|
||||
export default {
|
||||
isBrowser: true,
|
||||
classes: {
|
||||
URLSearchParams,
|
||||
FormData,
|
||||
Blob,
|
||||
},
|
||||
protocols: ['http', 'https', 'file', 'blob', 'url', 'data'],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue