Files
kjol/tools/tsgo/internal/nativepath/realpath_other.go
2026-07-09 16:50:43 -04:00

10 lines
169 B
Go

//go:build !windows && !linux && !darwin
package nativepath
import "path/filepath"
func Realpath(path string) (string, error) {
return filepath.EvalSymlinks(path)
}