mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
13 lines
156 B
Go
13 lines
156 B
Go
package spdxhelpers
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func NoneIfEmpty(value string) string {
|
|
if strings.TrimSpace(value) == "" {
|
|
return "NONE"
|
|
}
|
|
return value
|
|
}
|