This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-14 15:00:52 +02:00

6 lines
185 B
TypeScript

import { DOUBLE_WHITE_SPACE, SPECIAL_CHAR } from "./Regex";
export function trimSpecial(str: string) {
return str.replace(SPECIAL_CHAR, "").replace(DOUBLE_WHITE_SPACE, " ").trim();
}