UNPKG

cyberchef

Version:

The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.

39 lines (35 loc) 1.29 kB
/** * THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs * * @author n1474335 [n1474335@gmail.com] * @copyright Crown Copyright 2020 * @license Apache-2.0 */ import Bzip2Compress from "../../operations/Bzip2Compress.mjs"; import Bzip2Decompress from "../../operations/Bzip2Decompress.mjs"; import Gunzip from "../../operations/Gunzip.mjs"; import Gzip from "../../operations/Gzip.mjs"; import RawDeflate from "../../operations/RawDeflate.mjs"; import RawInflate from "../../operations/RawInflate.mjs"; import Tar from "../../operations/Tar.mjs"; import Untar from "../../operations/Untar.mjs"; import Unzip from "../../operations/Unzip.mjs"; import Zip from "../../operations/Zip.mjs"; import ZlibDeflate from "../../operations/ZlibDeflate.mjs"; import ZlibInflate from "../../operations/ZlibInflate.mjs"; const OpModules = typeof self === "undefined" ? {} : self.OpModules || {}; OpModules.Compression = { "Bzip2 Compress": Bzip2Compress, "Bzip2 Decompress": Bzip2Decompress, "Gunzip": Gunzip, "Gzip": Gzip, "Raw Deflate": RawDeflate, "Raw Inflate": RawInflate, "Tar": Tar, "Untar": Untar, "Unzip": Unzip, "Zip": Zip, "Zlib Deflate": ZlibDeflate, "Zlib Inflate": ZlibInflate, }; export default OpModules;