unpkg/modules/utils/registryAgent.js
2019-01-05 17:14:36 -08:00

8 lines
105 B
JavaScript

import https from 'https';
const agent = new https.Agent({
keepAlive: true
});
export default agent;