atomics-http
Version:
atomics-http is a Node.js extension that provides synchronous http calls.
18 lines • 478 B
JavaScript
;
module.exports = function (agent, constructor) {
return {
protocol: agent.protocol,
options: agent.options,
construct: function () {
let cli;
if (this.protocol.indexOf('https') > -1) {
cli = require('https');
}
else {
cli = require('http');
}
return new cli.Agent(this.options);
}
};
};
//# sourceMappingURL=Agent.js.map