Files
mostlymatter/vendor/github.com/splitio/go-toolkit/v4/common/strutil.go
Joram Wilander aba00a3cfd Update split SDK to 6.0.2 to fix sync bug (#17060)
* Update split SDK to 6.0.2 to fix sync bug

* Vendor and tidy
2021-03-04 11:16:08 -05:00

10 строки
201 B
Go

package common
// StringValueOrDefault returns original value if not empty. Default otherwise.
func StringValueOrDefault(str string, def string) string {
if str != "" {
return str
}
return def
}