func path.Clean

20 uses

	path (current package)
		path.go#L70: func Clean(path string) string {
		path.go#L179: 	return Clean(string(buf))
		path.go#L232: 	return Clean(dir)

	archive/zip
		reader.go#L663: 	p := path.Clean(name)

	github.com/aws/aws-sdk-go/private/protocol/rest
		build.go#L244: 	u.Path = path.Clean(u.Path)
		build.go#L245: 	u.RawPath = path.Clean(u.RawPath)

	github.com/evanw/esbuild/internal/fs
		fs_mock.go#L75: 	return path.Clean(path.Join("/", p)), true
		fs_mock.go#L91: 	return path.Clean(path.Join(parts...))

	github.com/evanw/esbuild/pkg/api
		serve_other.go#L120: 		queryPath := path.Clean(req.URL.Path)[1:]

	go.opencensus.io/zpages/internal
		resources.go#L43: 	f, present := _escData[path.Clean(name)]
		resources.go#L51: 	f, present := _escData[path.Clean(name)]

	go/build
		build.go#L300: 	c.GOROOT = pathpkg.Clean(runtime.GOROOT())

	golang.org/x/mod/zip
		zip.go#L248: 		if p != path.Clean(p) {
		zip.go#L426: 		if path.Clean(name) != name {

	golang.org/x/pkgsite/internal/frontend
		overview.go#L154: 	destPath := path.Join(path.Dir(readme.Filepath), path.Clean(trimmedEscapedPath(destURL)))
		search.go#L298: 	requestedPath := path.Clean(query)

	net/http
		fs.go#L79: 	fullName := filepath.Join(dir, filepath.FromSlash(path.Clean("/"+name)))
		fs.go#L848: 	serveFile(w, r, f.root, path.Clean(upath), true)
		server.go#L2156: 			url = path.Clean(url)
		server.go#L2281: 	np := path.Clean(p)