sky32

Results 2 comments of sky32

pkg/tplfunc/date.go ``` func FormatDate() Func { return func(funcMap template.FuncMap) { funcMap["formatDate"] = func(args ...any) string { switch len(args) { case 0: panic("formatDate() requires at least 1 argument") case 1: switch...