mirror of https://github.com/spf13/cast.git
Added float64 to time conversion
This commit is contained in:
parent
1ffadf5510
commit
6b8e137799
|
@ -1210,6 +1210,7 @@ func TestToTimeEE(t *testing.T) {
|
||||||
{uint(1482597504), time.Date(2016, 12, 24, 16, 38, 24, 0, time.UTC), false},
|
{uint(1482597504), time.Date(2016, 12, 24, 16, 38, 24, 0, time.UTC), false},
|
||||||
{uint64(1234567890), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
{uint64(1234567890), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
||||||
{uint32(1234567890), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
{uint32(1234567890), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
||||||
|
{float64(1234567890), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
||||||
{time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
{time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC), false},
|
||||||
// errors
|
// errors
|
||||||
{"2006", time.Time{}, true},
|
{"2006", time.Time{}, true},
|
||||||
|
|
2
caste.go
2
caste.go
|
@ -39,6 +39,8 @@ func ToTimeE(i interface{}) (tim time.Time, err error) {
|
||||||
return time.Unix(int64(v), 0), nil
|
return time.Unix(int64(v), 0), nil
|
||||||
case uint32:
|
case uint32:
|
||||||
return time.Unix(int64(v), 0), nil
|
return time.Unix(int64(v), 0), nil
|
||||||
|
case float64:
|
||||||
|
return time.Unix(int64(v), 0), nil
|
||||||
default:
|
default:
|
||||||
return time.Time{}, fmt.Errorf("unable to cast %#v of type %T to Time", i, i)
|
return time.Time{}, fmt.Errorf("unable to cast %#v of type %T to Time", i, i)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue