unpkg/modules/utils/registryAgent.js

8 lines
112 B
JavaScript

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