mirror of
https://github.com/idanoo/autobrr
synced 2025-07-24 17:29:12 +00:00
8 lines
113 B
Go
8 lines
113 B
Go
package sanitize
|
|
|
|
import "strings"
|
|
|
|
func String(str string) string {
|
|
str = strings.TrimSpace(str)
|
|
return str
|
|
}
|