mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
12 lines
168 B
Go
12 lines
168 B
Go
|
|
package util
|
||
|
|
|
||
|
|
func FirstNonBlank(candidates ...string) string {
|
||
|
|
for _, candidate := range candidates {
|
||
|
|
if candidate != "" {
|
||
|
|
return candidate
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return ""
|
||
|
|
}
|