Newer
Older
percord / src / util / String.ts
@Flam3rboy Flam3rboy on 24 Apr 2021 228 bytes :bug: fix Webhook model
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();
}