commonMain.krono.Patterns.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
object Patterns {
const val ISO_DATE = "{YYYY}-{MM}-{DD}"
const val ISO_TIME = "{HH}:{mm}:{ss}"
const val ISO_DATE_TIME = "${ISO_DATE}T$ISO_TIME"
}