gitlab.com/evatix-go/core@v1.3.55/corecsv/DefaultCsv.go (about)

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