pkger/pkging/pkgtest/pkgtest.go

10 lines
141 B
Go
Raw Permalink Normal View History

2019-10-16 16:50:40 +03:00
package pkgtest
import "strings"
func clean(s string) string {
s = strings.TrimSpace(s)
s = strings.ReplaceAll(s, "\\", "/")
return s
}