Files
descrybe/apps/api/internal/platformsettings/bool.go
T

13 lines
202 B
Go
Raw Normal View History

package platformsettings
import "strings"
func parseTruthy(v string) bool {
switch strings.ToLower(strings.TrimSpace(v)) {
case "1", "true", "yes", "on":
return true
default:
return false
}
}