atomics-http
Version:
atomics-http is a Node.js extension that provides synchronous http calls.
12 lines • 379 B
JavaScript
;
module.exports = function (agent, constructor) {
return {
name: constructor,
options: agent.proxy,
construct: function () {
let Agent = require(this.name == 'HttpProxyAgent' ? 'http-proxy-agent' : 'https-proxy-agent');
return new Agent(this.options);
}
};
};
//# sourceMappingURL=HttpProxyAgent.js.map