mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-28 02:05:41 -05:00
lib/irc: unexport STD_MEMBERSHIPS and STD_CHANTYPES
This commit is contained in:
parent
301f133272
commit
6be24e8ed9
1 changed files with 3 additions and 3 deletions
|
@ -74,9 +74,6 @@ export const ERR_SASLTOOLONG = "905";
|
|||
export const ERR_SASLABORTED = "906";
|
||||
export const ERR_SASLALREADY = "907";
|
||||
|
||||
export const STD_MEMBERSHIPS = "~&@%+";
|
||||
export const STD_CHANTYPES = "#&+!";
|
||||
|
||||
export const STD_MEMBERSHIP_NAMES = {
|
||||
"~": "owner",
|
||||
"&": "admin",
|
||||
|
@ -85,6 +82,9 @@ export const STD_MEMBERSHIP_NAMES = {
|
|||
"+": "voice",
|
||||
};
|
||||
|
||||
const STD_MEMBERSHIPS = "~&@%+";
|
||||
const STD_CHANTYPES = "#&+!";
|
||||
|
||||
const tagEscapeMap = {
|
||||
";": "\\:",
|
||||
" ": "\\s",
|
||||
|
|
Loading…
Reference in a new issue