diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 00:23:49 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 00:23:49 +0200 |
commit | a83e9bd36fc6a934553d93cbcc0edb120321f971 (patch) | |
tree | a9cc04ca3a0f8392f6ccbf470b323794e535ae7a /pkg/util | |
parent | 87fd0ad3e9309064fe9fda373035f5ce127ae8d8 (diff) | |
download | feed2imap-go-a83e9bd36fc6a934553d93cbcc0edb120321f971.tar.gz feed2imap-go-a83e9bd36fc6a934553d93cbcc0edb120321f971.tar.bz2 feed2imap-go-a83e9bd36fc6a934553d93cbcc0edb120321f971.zip |
Filtering from cache
Diffstat (limited to '')
-rw-r--r-- | pkg/util/util.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/util/util.go b/pkg/util/util.go index c5472ab..659c886 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -1,5 +1,7 @@ package util +import "time" + func StrContains(haystack []string, needle string) bool { for _, s := range haystack { if s == needle { @@ -9,3 +11,11 @@ func StrContains(haystack []string, needle string) bool { return false } + +func TimeFormat(t time.Time) string { + if t.IsZero() { + return "not set" + } else { + return t.Format(time.ANSIC) + } +} |