providers/strings: stripSlashes now removes backslashes too

This commit is contained in:
Sasha Koshka 2025-03-28 10:45:04 -04:00
parent 961f7187e9
commit b974fde7e4

View File

@ -69,5 +69,5 @@ func funcStripNonPrintables (input string) string {
} }
func funcStripSlashes (input string) string { func funcStripSlashes (input string) string {
return strings.ReplaceAll(input, "/", "") return funcStripAny("/\\", input)
} }