CalendarUtil
object CalendarUtil
Description: Calendar util class
object CalendarUtil {
/**
* get time offset
*/
fun getTimeZone(): Float {
val cal = Calendar.getInstance()
return cal.get(Calendar.ZONE_OFFSET)/3600/1000f
}
}