文件操作 - HttpProxyAgent.js
返回文件管理
返回主菜单
删除本文件
文件: /node_modules/global-agent/src/classes/HttpProxyAgent.js
编辑文件内容
// @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;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件