mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +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
|
|
}
|