package sdkuri

import (
	
	
)
PathJoin will join the elements of the path delimited by the "/" character. Similar to path.Join with the exception the trailing "/" character is preserved if present.
func ( ...string) string {
	if len() == 0 {
		return ""
	}

	 := strings.HasSuffix([len()-1], "/")
	 := path.Join(...)
	if  &&  != "/" {
		 += "/"
	}

	return