mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-12 20:35:40 +00:00
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import { DOUBLE_WHITE_SPACE, SPECIAL_CHAR } from "./Regex";
|
|
|
|
export function trimSpecial(str?: string) {
|
|
if (!str) return;
|
|
return str.replace(SPECIAL_CHAR, "").replace(DOUBLE_WHITE_SPACE, " ").trim();
|
|
}
|