github.com/evanw/esbuild/internal/fs.goFilepath.clean (method)

13 uses

	github.com/evanw/esbuild/internal/fs (current package)
		filepath.go#L103: 		return fp.clean(path), nil
		filepath.go#L290: 	return fp.clean(dest), nil
		filepath.go#L365: func (fp goFilepath) clean(path string) string {
		filepath.go#L488: 	dir := fp.clean(path[len(vol) : i+1])
		filepath.go#L522: 			return fp.clean(strings.Join(elem[i:], string(fp.pathSeparator)))
		filepath.go#L540: 		return fp.clean(elem[0] + strings.Join(elem[i:], string(fp.pathSeparator)))
		filepath.go#L545: 	p := fp.clean(strings.Join(elem, string(fp.pathSeparator)))
		filepath.go#L550: 	head := fp.clean(elem[0])
		filepath.go#L556: 	tail := fp.clean(strings.Join(elem[1:], string(fp.pathSeparator)))
		filepath.go#L579: 	base := fp.clean(basepath)
		filepath.go#L580: 	targ := fp.clean(targpath)
		fs_real.go#L271: 	return fs.fp.clean(fs.fp.join(parts))
		fs_real.go#L350: 			symlink = fs.fp.clean(link)