This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2023-01-29 17:04:41 +01:00
|
|
|
const matchFormatting =
|
|
|
|
|
/\x02|\x1D|\x1F|\x16|\x0F|\x11|\x1E|\x03(?:[0-9]{1,2}(?:,[0-9]{1,2})?)?|\x04(?:[0-9a-f]{6}(?:,[0-9a-f]{6})?)?/gi;
|
|
|
|
|
|
|
|
|
|
export function cleanIrcMessage(message: string) {
|
|
|
|
|
return message.replace(matchFormatting, "").trim();
|
|
|
|
|
}
|