syft/syft/formats/common/spdxhelpers/none_if_empty.go

13 lines
154 B
Go

package spdxhelpers
import (
"strings"
)
func NoneIfEmpty(value string) string {
if strings.TrimSpace(value) == "" {
return NONE
}
return value
}