CyberChef/src/core/config/modules/Default.mjs

37 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-03-26 23:14:23 +01:00
/**
* THIS FILE IS AUTOMATICALLY GENERATED BY src/core/config/scripts/generateConfig.mjs
2018-03-26 23:14:23 +01:00
*
* @author n1474335 [n1474335@gmail.com]
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
import FromBase32 from "../../operations/FromBase32";
2018-03-26 23:14:23 +01:00
import FromBase64 from "../../operations/FromBase64";
import FromHex from "../../operations/FromHex";
2018-04-04 17:37:19 +01:00
import RawDeflate from "../../operations/RawDeflate";
import SetIntersection from "../../operations/SetIntersection";
import SetOps from "../../operations/SetOps";
import SetUnion from "../../operations/SetUnion";
import ShowBase64Offsets from "../../operations/ShowBase64Offsets";
import ToBase32 from "../../operations/ToBase32";
import ToBase64 from "../../operations/ToBase64";
import ToHex from "../../operations/ToHex";
2018-03-26 23:14:23 +01:00
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
2018-03-26 23:14:23 +01:00
OpModules.Default = {
"From Base32": FromBase32,
2018-03-26 23:14:23 +01:00
"From Base64": FromBase64,
"From Hex": FromHex,
2018-04-04 17:37:19 +01:00
"Raw Deflate": RawDeflate,
"Set Intersection": SetIntersection,
"": SetOps,
"Set Union": SetUnion,
"Show Base64 offsets": ShowBase64Offsets,
"To Base32": ToBase32,
"To Base64": ToBase64,
"To Hex": ToHex,
2018-03-26 23:14:23 +01:00
};
export default OpModules;