gitlab.com/evatix-go/core@v1.3.55/corecsv/DefaultAnyCsv.go (about) 1 package corecsv 2 3 import "gitlab.com/evatix-go/core/constants" 4 5 func DefaultAnyCsv( 6 references ...interface{}, 7 ) string { 8 return AnyItemsToCsvString( 9 constants.CommaSpace, 10 true, 11 false, 12 references...) 13 }