unpkg/modules/utils/registryAgent.js
2018-12-17 09:38:05 -08:00

8 lines
112 B
JavaScript

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