mirror of
https://github.com/thelounge/thelounge.git
synced 2026-03-18 08:19:54 +01:00
4 lines
221 B
TypeScript
4 lines
221 B
TypeScript
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 default (message: string) => message.replace(matchFormatting, "").trim();
|