summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/axios/lib/platform
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
committerRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
commit953ddd82e48dd206cef5ac94456549aed13b3ad5 (patch)
tree8f003106ee2e7f422e5a22d2ee04d0db302e66c0 /includes/external/matrix/node_modules/axios/lib/platform
parent62a9199846b0c07c03218703b33e8385764f42d9 (diff)
downloadpluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.gz
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.bz2
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.zip
Updated 30 files and deleted 2976 files (automated)
Diffstat (limited to 'includes/external/matrix/node_modules/axios/lib/platform')
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/browser/classes/Blob.js3
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/browser/classes/FormData.js3
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js4
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/browser/index.js64
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/index.js3
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/node/classes/FormData.js3
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/node/classes/URLSearchParams.js4
-rw-r--r--includes/external/matrix/node_modules/axios/lib/platform/node/index.js12
8 files changed, 0 insertions, 96 deletions
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/Blob.js b/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/Blob.js
deleted file mode 100644
index 6c506c4..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/Blob.js
+++ /dev/null
@@ -1,3 +0,0 @@
-'use strict'
-
-export default typeof Blob !== 'undefined' ? Blob : null
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/FormData.js b/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/FormData.js
deleted file mode 100644
index f36d31b..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/FormData.js
+++ /dev/null
@@ -1,3 +0,0 @@
-'use strict';
-
-export default typeof FormData !== 'undefined' ? FormData : null;
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js b/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js
deleted file mode 100644
index b7dae95..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js
+++ /dev/null
@@ -1,4 +0,0 @@
-'use strict';
-
-import AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';
-export default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/browser/index.js b/includes/external/matrix/node_modules/axios/lib/platform/browser/index.js
deleted file mode 100644
index 4d2203f..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/browser/index.js
+++ /dev/null
@@ -1,64 +0,0 @@
-import URLSearchParams from './classes/URLSearchParams.js'
-import FormData from './classes/FormData.js'
-import Blob from './classes/Blob.js'
-
-/**
- * Determine if we're running in a standard browser environment
- *
- * This allows axios to run in a web worker, and react-native.
- * Both environments support XMLHttpRequest, but not fully standard globals.
- *
- * web workers:
- * typeof window -> undefined
- * typeof document -> undefined
- *
- * react-native:
- * navigator.product -> 'ReactNative'
- * nativescript
- * navigator.product -> 'NativeScript' or 'NS'
- *
- * @returns {boolean}
- */
-const isStandardBrowserEnv = (() => {
- let product;
- if (typeof navigator !== 'undefined' && (
- (product = navigator.product) === 'ReactNative' ||
- product === 'NativeScript' ||
- product === 'NS')
- ) {
- return false;
- }
-
- return typeof window !== 'undefined' && typeof document !== 'undefined';
-})();
-
-/**
- * Determine if we're running in a standard browser webWorker environment
- *
- * Although the `isStandardBrowserEnv` method indicates that
- * `allows axios to run in a web worker`, the WebWorker will still be
- * filtered out due to its judgment standard
- * `typeof window !== 'undefined' && typeof document !== 'undefined'`.
- * This leads to a problem when axios post `FormData` in webWorker
- */
- const isStandardBrowserWebWorkerEnv = (() => {
- return (
- typeof WorkerGlobalScope !== 'undefined' &&
- // eslint-disable-next-line no-undef
- self instanceof WorkerGlobalScope &&
- typeof self.importScripts === 'function'
- );
-})();
-
-
-export default {
- isBrowser: true,
- classes: {
- URLSearchParams,
- FormData,
- Blob
- },
- isStandardBrowserEnv,
- isStandardBrowserWebWorkerEnv,
- protocols: ['http', 'https', 'file', 'blob', 'url', 'data']
-};
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/index.js b/includes/external/matrix/node_modules/axios/lib/platform/index.js
deleted file mode 100644
index 5e9d005..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/index.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import platform from './node/index.js';
-
-export {platform as default}
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/node/classes/FormData.js b/includes/external/matrix/node_modules/axios/lib/platform/node/classes/FormData.js
deleted file mode 100644
index b07f947..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/node/classes/FormData.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import FormData from 'form-data';
-
-export default FormData;
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/node/classes/URLSearchParams.js b/includes/external/matrix/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
deleted file mode 100644
index fba5842..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
+++ /dev/null
@@ -1,4 +0,0 @@
-'use strict';
-
-import url from 'url';
-export default url.URLSearchParams;
diff --git a/includes/external/matrix/node_modules/axios/lib/platform/node/index.js b/includes/external/matrix/node_modules/axios/lib/platform/node/index.js
deleted file mode 100644
index aef514a..0000000
--- a/includes/external/matrix/node_modules/axios/lib/platform/node/index.js
+++ /dev/null
@@ -1,12 +0,0 @@
-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' ]
-};