pkger/pkging/pkgtest/pkgtest.go

10 lines
141 B
Go

package pkgtest
import "strings"
func clean(s string) string {
s = strings.TrimSpace(s)
s = strings.ReplaceAll(s, "\\", "/")
return s
}