summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-24 18:36:32 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-24 18:36:32 +0200
commit57f44442ff59a41b56090a907d77d89d49fe5325 (patch)
tree875862daa0c10c27113230ed57cf4ea7f9060b47 /src/util
parent1.0.6 (diff)
downloadserver-57f44442ff59a41b56090a907d77d89d49fe5325.tar.xz
:bug: fix string
Diffstat (limited to 'src/util')
-rw-r--r--src/util/String.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/String.ts b/src/util/String.ts
index 161336f1..bac7905f 100644
--- a/src/util/String.ts
+++ b/src/util/String.ts
@@ -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();
 }