unpkg/modules/utils/registryAgent.js

8 lines
105 B
JavaScript

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