Select Git revision
-
Md. Alim Ul Karim authored
v1.1.2
Md. Alim Ul Karim authoredv1.1.2
JoinPrependUsingDot.go 220 B
package enumimpl
import (
"gitlab.com/evatix-go/core/constants"
)
func JoinPrependUsingDot(
prepend interface{},
anyItems ...interface{},
) string {
return PrependJoin(
constants.Dot,
prepend,
anyItems...)
}