2
0
mirror of https://github.com/araddon/dateparse.git synced 2026-08-07 15:18:21 +08:00

support short date format

This commit is contained in:
Aaron Raddon
2016-01-05 11:34:31 -08:00
parent eeec45e120
commit fbec5be882
2 changed files with 8 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ const (
var _ = u.EMPTY
var (
shortDates = []string{"01/02/2006", "1/2/2006", "06/01/02", "01/02/06"}
shortDates = []string{"01/02/2006", "1/2/2006", "06/01/02", "01/02/06", "1/2/06"}
)
// Given an unknown date format, detect the type, parse, return time
@@ -200,6 +200,7 @@ iterRunes:
// 3/1/2014
// 10/13/2014
// 01/02/2006
// 1/2/06
if unicode.IsDigit(r) || r == '/' {
continue
}