ess-ts
Version:
Enhanced Security Services (ESS) in TypeScript
22 lines • 939 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._encode_ContentType = exports._decode_ContentType = void 0;
const tslib_1 = require("tslib");
const $ = tslib_1.__importStar(require("asn1-ts/dist/node/functional"));
let _cached_decoder_for_ContentType = null;
function _decode_ContentType(el) {
if (!_cached_decoder_for_ContentType) {
_cached_decoder_for_ContentType = $._decodeObjectIdentifier;
}
return _cached_decoder_for_ContentType(el);
}
exports._decode_ContentType = _decode_ContentType;
let _cached_encoder_for_ContentType = null;
function _encode_ContentType(value, elGetter) {
if (!_cached_encoder_for_ContentType) {
_cached_encoder_for_ContentType = $._encodeObjectIdentifier;
}
return _cached_encoder_for_ContentType(value, elGetter);
}
exports._encode_ContentType = _encode_ContentType;
//# sourceMappingURL=ContentType.ta.js.map