mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
9 lines
134 B
Go
9 lines
134 B
Go
package utils
|
|
|
|
import "github.com/samber/lo"
|
|
|
|
func EmptyOr[T comparable](v T, def T) T {
|
|
ret, _ := lo.Coalesce(v, def)
|
|
return ret
|
|
}
|