gitlab.com/evatix-go/core@v1.3.55/errcore/ToValueString.go (about)

     1  package errcore
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"gitlab.com/evatix-go/core/constants"
     7  )
     8  
     9  func ToValueString(reference interface{}) string {
    10  	return fmt.Sprintf(
    11  		constants.SprintPropertyNameValueFormat,
    12  		reference)
    13  }