unpkg/modules/utils/registryAgent.js
2018-07-31 10:20:24 -07:00

8 lines
112 B
JavaScript

const https = require("https");
const agent = new https.Agent({
keepAlive: true
});
module.exports = agent;