UNPKG

@azure/cosmos

Version:
20 lines 589 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultHttpAgent = exports.defaultHttpsAgent = void 0; const tslib_1 = require("tslib"); const node_https_1 = tslib_1.__importDefault(require("node:https")); const node_http_1 = tslib_1.__importDefault(require("node:http")); /** * @internal */ exports.defaultHttpsAgent = new node_https_1.default.Agent({ keepAlive: true, minVersion: "TLSv1.2", }); /** * @internal */ exports.defaultHttpAgent = new node_http_1.default.Agent({ keepAlive: true, }); //# sourceMappingURL=defaultAgent.js.map