io.datalbry.jetbrains.space.client.DateTimeUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetbrains-client Show documentation
Show all versions of jetbrains-client Show documentation
Client implementation for Jetbrains Space
package io.datalbry.jetbrains.space.client
import kotlinx.datetime.toJavaInstant
import java.time.Instant
import java.time.LocalDateTime
import java.time.ZoneOffset
internal fun Instant.toLocalDateTime() = LocalDateTime.ofInstant(this, ZoneOffset.UTC)
internal fun kotlinx.datetime.Instant.toJavaLocalDateTime() = this.toJavaInstant().toLocalDateTime()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy