summaryrefslogtreecommitdiff
path: root/includes/external/signal/node_modules/axios/lib/platform
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
committerRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
commit6b796258d413f00e498ce7f80f73a9f6c061f29c (patch)
tree49e64a5dd4cde2acff7f0a93ed3f8e20e1cb2dc8 /includes/external/signal/node_modules/axios/lib/platform
parent5860551daa0f60103ad24e93da29f401a653f144 (diff)
downloadpluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.gz
pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.bz2
pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.zip
Updated 5 files, added 2 files, deleted 495 files and renamed 7 files (automated)
Diffstat (limited to 'includes/external/signal/node_modules/axios/lib/platform')
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/browser/classes/Blob.js3
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/browser/classes/FormData.js3
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js4
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/browser/index.js64
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/index.js3
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/node/classes/FormData.js3
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/node/classes/URLSearchParams.js4
-rw-r--r--includes/external/signal/node_modules/axios/lib/platform/node/index.js12
8 files changed, 0 insertions, 96 deletions
diff --git a/includes/external/signal/node_modules/axios/lib/platform/browser/classes/Blob.js b/includes/external/signal/node_modules/axios/lib/platform/browser/classes/Blob.js
deleted file mode 100644
index 6c506c4..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/browser/classes/FormData.js b/includes/external/signal/node_modules/axios/lib/platform/browser/classes/FormData.js
deleted file mode 100644
index f36d31b..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js b/includes/external/signal/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js
deleted file mode 100644
index b7dae95..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/browser/index.js b/includes/external/signal/node_modules/axios/lib/platform/browser/index.js
deleted file mode 100644
index 4d2203f..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/index.js b/includes/external/signal/node_modules/axios/lib/platform/index.js
deleted file mode 100644
index 5e9d005..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/node/classes/FormData.js b/includes/external/signal/node_modules/axios/lib/platform/node/classes/FormData.js
deleted file mode 100644
index b07f947..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/node/classes/URLSearchParams.js b/includes/external/signal/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
deleted file mode 100644
index fba5842..0000000
--- a/includes/external/signal/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/signal/node_modules/axios/lib/platform/node/index.js b/includes/external/signal/node_modules/axios/lib/platform/node/index.js
deleted file mode 100644
index aef514a..0000000
--- a/includes/external/signal/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' ]
-};