summaryrefslogtreecommitdiff
path: root/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow')
-rw-r--r--node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow30
1 files changed, 0 insertions, 30 deletions
diff --git a/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow b/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow
deleted file mode 100644
index 8b9b471..0000000
--- a/node_modules/global-agent/dist/classes/HttpProxyAgent.js.flow
+++ /dev/null
@@ -1,30 +0,0 @@
-// @flow
-
-import net from 'net';
-import type {
- ConnectionCallbackType,
- ConnectionConfigurationType,
-} from '../types';
-import Agent from './Agent';
-
-class HttpProxyAgent extends Agent {
- // @see https://github.com/sindresorhus/eslint-plugin-unicorn/issues/169#issuecomment-486980290
- // eslint-disable-next-line unicorn/prevent-abbreviations
- constructor (...args: *) {
- super(...args);
-
- this.protocol = 'http:';
- this.defaultPort = 80;
- }
-
- createConnection (configuration: ConnectionConfigurationType, callback: ConnectionCallbackType) {
- const socket = net.connect(
- configuration.proxy.port,
- configuration.proxy.hostname,
- );
-
- callback(null, socket);
- }
-}
-
-export default HttpProxyAgent;