aboutsummaryrefslogtreecommitdiff
path: root/pkg/util/util.go
blob: 659c88687789f669ebb61139cfa904e50d567dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package util

import "time"

func StrContains(haystack []string, needle string) bool {
	for _, s := range haystack {
		if s == needle {
			return true
		}
	}

	return false
}

func TimeFormat(t time.Time) string {
	if t.IsZero() {
		return "not set"
	} else {
		return t.Format(time.ANSIC)
	}
}