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