blob: cc81a1ca5ac80b7e13f09ce59db682b5d1ceeeec (
plain)
1
2
3
4
5
6
7
8
9
10
|
package internal
import "time"
const iOS13DetriFormat = `2006 M01 2`
// IOS13Detri formats a datestamp like iOS 13 does with the Lojban locale.
func IOS13Detri(t time.Time) string {
return t.Format(iOS13DetriFormat)
}
|