github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/utils/home/home_js.go (about)

     1  //go:build js
     2  // +build js
     3  
     4  package home
     5  
     6  // MyDir is the $USER directory.
     7  var MyDir = "/"
     8  
     9  // UserDir is the home directory of a `username`.
    10  func UserDir(_ string) string {
    11  	return "/"
    12  }