fun isNightTime()

in src/main/kotlin/org/jetbrains/plugins/template/weatherApp/ui/components/WeatherDetailsCard.kt [627:630]


fun isNightTime(dateTime: LocalDateTime): Boolean {
    val hour = dateTime.hour
    return hour !in 6..<19
}