go-chart/util/date_posix.go
Will Charczuk 376a8efa36 updates
2017-04-29 13:19:17 -07:00

18 lines
309 B
Go

// +build !windows
package util
import "time"
// Eastern returns the eastern timezone.
func (d date) Eastern() *time.Location {
if _eastern == nil {
_easternLock.Lock()
defer _easternLock.Unlock()
if _eastern == nil {
_eastern, _ = time.LoadLocation("America/New_York")
}
}
return _eastern
}