...

Source file src/github.com/tetratelabs/wazero/internal/platform/path.go

Documentation: github.com/tetratelabs/wazero/internal/platform

     1  //go:build !windows
     2  
     3  package platform
     4  
     5  // ToPosixPath returns the input, as only windows might return backslashes.
     6  func ToPosixPath(in string) string { return in }
     7  

View as plain text