Files
yenai-plugin/lib/request/httpsProxyAgentMod.mjs
2023-02-06 01:03:19 +08:00

11 lines
341 B
JavaScript

import HttpsProxyAgentOrig from 'https-proxy-agent'
export class HttpsProxyAgent extends HttpsProxyAgentOrig {
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))
}
}