mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-25 01:35:29 +00:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
import { DOUBLE_WHITE_SPACE, SPECIAL_CHAR } from "./Regex";
|
|
|
|
export function trimSpecial(str?: string): string {
|
|
// @ts-ignore
|
|
if (!str) return;
|
|
return str.replace(SPECIAL_CHAR, "").replace(DOUBLE_WHITE_SPACE, " ").trim();
|
|
}
|