From 6be24e8ed9baef410063edfd801191193e49f3df Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 7 Sep 2024 12:37:10 +0200 Subject: [PATCH] lib/irc: unexport STD_MEMBERSHIPS and STD_CHANTYPES --- lib/irc.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/irc.js b/lib/irc.js index 708a614..46400df 100644 --- a/lib/irc.js +++ b/lib/irc.js @@ -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",