1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 02:31:36 +02:00

🐛 fix string

This commit is contained in:
Flam3rboy 2021-04-24 18:36:32 +02:00
parent 0340757d78
commit 57f44442ff
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fosscord/server-util",
"version": "1.0.6",
"version": "1.0.7",
"description": "Utility functions for the all server repositories",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -1,6 +1,7 @@
import { DOUBLE_WHITE_SPACE, SPECIAL_CHAR } from "./Regex";
export function trimSpecial(str?: string) {
export function trimSpecial(str?: string): string {
// @ts-ignore
if (!str) return;
return str.replace(SPECIAL_CHAR, "").replace(DOUBLE_WHITE_SPACE, " ").trim();
}