gitlab.com/evatix-go/core@v1.3.55/coretests/GetMessageToSorted.go (about) 1 package coretests 2 3 import "strings" 4 5 func GetMessageToSorted( 6 isPrint bool, 7 message, 8 joiner string, 9 ) string { 10 whitespaceRemovedSplits := GetMessageToSortedArray( 11 isPrint, 12 true, 13 message) 14 15 return strings.Join(whitespaceRemovedSplits, joiner) 16 }