MCPcopy Create free account
hub / github.com/aiprodcoder/MIXAPI / GetStringIfEmpty

Function GetStringIfEmpty

common/str.go:11–16  ·  view source on GitHub ↗
(str string, defaultValue string)

Source from the content-addressed store, hash-verified

9)
10
11func GetStringIfEmpty(str string, defaultValue string) string {
12 if str == "" {
13 return defaultValue
14 }
15 return str
16}
17
18func GetRandomString(length int) string {
19 //rand.Seed(time.Now().UnixNano())

Callers 1

getModelRequestFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected