2017-04-18 07:42:26 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-04-28 21:40:26 +00:00
|
|
|
const colorCodeMap = [
|
|
|
|
["00", "White"],
|
|
|
|
["01", "Black"],
|
|
|
|
["02", "Blue"],
|
|
|
|
["03", "Green"],
|
|
|
|
["04", "Red"],
|
|
|
|
["05", "Brown"],
|
|
|
|
["06", "Magenta"],
|
|
|
|
["07", "Orange"],
|
|
|
|
["08", "Yellow"],
|
|
|
|
["09", "Light Green"],
|
|
|
|
["10", "Cyan"],
|
|
|
|
["11", "Light Cyan"],
|
|
|
|
["12", "Light Blue"],
|
|
|
|
["13", "Pink"],
|
|
|
|
["14", "Grey"],
|
|
|
|
["15", "Light Grey"],
|
|
|
|
];
|
|
|
|
|
2017-06-22 20:08:36 +00:00
|
|
|
const condensedTypes = [
|
2017-07-10 16:01:20 +00:00
|
|
|
"away",
|
|
|
|
"back",
|
2017-09-19 15:22:50 +00:00
|
|
|
"chghost",
|
2017-06-22 20:08:36 +00:00
|
|
|
"join",
|
|
|
|
"part",
|
|
|
|
"quit",
|
2017-08-13 19:09:32 +00:00
|
|
|
"nick",
|
|
|
|
"kick",
|
|
|
|
"mode",
|
2017-06-22 20:08:36 +00:00
|
|
|
];
|
2018-03-05 00:59:16 +00:00
|
|
|
const condensedTypesQuery = "." + condensedTypes.join(", .");
|
2017-06-22 20:08:36 +00:00
|
|
|
|
2017-05-06 18:44:57 +00:00
|
|
|
const timeFormats = {
|
|
|
|
msgDefault: "HH:mm",
|
2017-11-15 06:35:15 +00:00
|
|
|
msgWithSeconds: "HH:mm:ss",
|
2017-05-06 18:44:57 +00:00
|
|
|
};
|
|
|
|
|
2017-04-18 07:42:26 +00:00
|
|
|
module.exports = {
|
2018-03-05 00:59:16 +00:00
|
|
|
colorCodeMap,
|
2019-07-02 16:02:02 +00:00
|
|
|
commands: [],
|
2018-03-05 00:59:16 +00:00
|
|
|
condensedTypes,
|
|
|
|
condensedTypesQuery,
|
|
|
|
timeFormats,
|
2017-04-18 07:42:26 +00:00
|
|
|
};
|