2018-03-26 23:14:23 +01:00
|
|
|
/**
|
2018-04-02 19:24:25 +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
|
|
|
|
*/
|
2018-04-02 17:10:51 +01:00
|
|
|
import FromBase32 from "../../operations/FromBase32";
|
2018-03-26 23:14:23 +01:00
|
|
|
import FromBase64 from "../../operations/FromBase64";
|
2018-04-02 18:06:48 +01:00
|
|
|
import FromHex from "../../operations/FromHex";
|
2018-04-02 17:10:51 +01:00
|
|
|
import ShowBase64Offsets from "../../operations/ShowBase64Offsets";
|
|
|
|
import ToBase32 from "../../operations/ToBase32";
|
|
|
|
import ToBase64 from "../../operations/ToBase64";
|
2018-04-02 18:06:48 +01:00
|
|
|
import ToHex from "../../operations/ToHex";
|
2018-03-26 23:14:23 +01:00
|
|
|
|
2018-04-02 17:10:51 +01:00
|
|
|
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
2018-03-26 23:14:23 +01:00
|
|
|
|
|
|
|
OpModules.Default = {
|
2018-04-02 17:10:51 +01:00
|
|
|
"From Base32": FromBase32,
|
2018-03-26 23:14:23 +01:00
|
|
|
"From Base64": FromBase64,
|
2018-04-02 18:06:48 +01:00
|
|
|
"From Hex": FromHex,
|
2018-04-02 17:10:51 +01:00
|
|
|
"Show Base64 offsets": ShowBase64Offsets,
|
|
|
|
"To Base32": ToBase32,
|
|
|
|
"To Base64": ToBase64,
|
2018-04-02 18:06:48 +01:00
|
|
|
"To Hex": ToHex,
|
2018-03-26 23:14:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default OpModules;
|