package
0.1.7
Repository: https://github.com/taubyte/utils.git
Documentation: pkg.go.dev

# Functions

Join joins the string slice to a string separated by a `/`.
Split splits the string by `/` separator, then cleans up any empty strings example: /home/taubyte with strings.Split would evaluate to []string{"", "home", "taubyte"} Split will evaluate `/home/taubyte` as []string{"home", "taubyte"} */.