# 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"}
*/.