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