pkg/timestamp: create timestamp package

This commit is contained in:
Fabian Reinartz 2016-12-28 11:33:00 +01:00
parent 71fe0c58a8
commit 0987a72ec9

View file

@ -0,0 +1,13 @@
package timestamp
import "time"
// FromTime returns a new millisecond timestamp from a time.
func FromTime(t time.Time) int64 {
return t.Unix()*1000 + int64(t.Nanosecond())/int64(time.Millisecond)
}
// Time returns a new time.Time object from a millisecond timestamp.
func Time(ts int64) time.Time {
return time.Unix(ts/1000, (ts%1000)*int64(time.Millisecond))
}