yats.git

ref: 873a8080d9eade1d010713c0c89538bc54abcdcf

server/dates/formatting.go


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
package dates

import (
	"fmt"
	"time"
)

func YYYYMMDD(t time.Time) string {
	return t.Format("20060201")
}

func YYYYWW(t time.Time) string {
	year, week := t.ISOWeek()
	return fmt.Sprintf("%d%.2d", year, week)
}

func YYYYMM(t time.Time) string {
	return fmt.Sprintf("%d%.2d", t.Year(), t.Month())
}