mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-25 12:04:39 +00:00
4 lines
143 B
TypeScript
4 lines
143 B
TypeScript
export const DOUBLE_WHITE_SPACE = /\s\s+/g;
|
|
export const SPECIAL_CHAR = /[@#`:\r\n\t\f\v\p{C}]/gu;
|
|
export const CHANNEL_MENTION = /<#(\d+)>/g;
|