mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
5 lines
229 B
JavaScript
5 lines
229 B
JavaScript
"use strict";
|
|
|
|
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;
|
|
|
|
module.exports = (message) => message.replace(matchFormatting, "").trim();
|