feat:#39 removed unused Function

This commit is contained in:
Elmar Kresse
2024-03-23 19:55:51 +01:00
parent 38f9c4d71b
commit 27e24727ab

View File

@@ -32,13 +32,6 @@ func Contains(s []string, e string) bool {
return false
}
func ReplaceEmptyString(word string, replacement string) string {
if OnlyWhitespace(word) {
return replacement
}
return word
}
func HashString(s string) string {
hash := sha256.New()
hash.Write([]byte(s))