Files
yenai-plugin/lib/request/httpsProxyAgentMod.js
2023-05-11 17:14:19 +08:00

11 lines
357 B
JavaScript

import HttpsProxyAgentOrig from 'https-proxy-agent'
export class HttpsProxyAgent extends HttpsProxyAgentOrig.HttpsProxyAgent {
constructor (opts) {
super(opts)
this.tlsConnectionOptions = opts.tls
const callback = this.callback.bind(this)
this.callback = (req, opts) => callback(req, Object.assign(opts, this.tlsConnectionOptions))
}
}