unpkg/server/utils/registryAgent.js
2018-07-14 17:45:37 -07:00

8 lines
112 B
JavaScript

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