mirror of https://github.com/Dreamacro/clash.git
9 lines
133 B
Go
9 lines
133 B
Go
|
package util
|
||
|
|
||
|
import "github.com/samber/lo"
|
||
|
|
||
|
func EmptyOr[T comparable](v T, def T) T {
|
||
|
ret, _ := lo.Coalesce(v, def)
|
||
|
return ret
|
||
|
}
|