commonMain.krono.MonthUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krono-api-jvm Show documentation
Show all versions of krono-api-jvm Show documentation
An multiplatform interoperable datetime library
The newest version!
@file:JsExport
package krono
import kotlinx.JsExport
fun Month.numberOfDays(year: Int): Int = when (this) {
Month.JANUARY -> 31
Month.FEBRUARY -> if (year % 4 == 0) 29 else 28
Month.MARCH -> 31
Month.APRIL -> 30
Month.MAY -> 31
Month.JUNE -> 30
Month.JULY -> 31
Month.AUGUST -> 31
Month.SEPTEMBER -> 30
Month.OCTOBER -> 31
Month.NOVEMBER -> 30
Month.DECEMBER -> 31
}