node-libcurl
Version:
The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl
25 lines • 809 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CurlHeader = void 0;
/**
* Copyright (c) Jonathan Cardoso Machado. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// https://github.com/curl/curl/blob/e1be825453/include/curl/curl.h#L880
/**
* Object with bitmasks to be used with `HEADEROPT`.
*
* Available since libcurl version \>= 7.37.0
*
* `CURLHEADER_UNIFIED` becomes `CurlHeader.Unified`
*
* @public
*/
var CurlHeader;
(function (CurlHeader) {
CurlHeader[CurlHeader["Unified"] = 0] = "Unified";
CurlHeader[CurlHeader["Separate"] = 1] = "Separate";
})(CurlHeader || (exports.CurlHeader = CurlHeader = {}));
//# sourceMappingURL=CurlHeader.js.map