summary refs log tree commit diff
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
parent1.0.6 (diff)
downloadserver-57f44442ff59a41b56090a907d77d89d49fe5325.tar.xz
:bug: fix string
-rw-r--r--package.json2
-rw-r--r--src/util/String.ts3
2 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json

index ea4bc997..105c353c 100644 --- a/package.json +++ b/package.json
@@ -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", 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(); }