func ParseInLocation()

in lunes.go [127:134]


func ParseInLocation(layout string, value string, lang string, location *time.Location) (time.Time, error) {
	locale, err := NewDefaultLocale(lang)
	if err != nil {
		return time.Time{}, err
	}

	return ParseInLocationWithLocale(layout, value, location, locale)
}