12 lines
No EOL
287 B
Kotlin
12 lines
No EOL
287 B
Kotlin
package net.dankito.utils.multiplatform
|
|
|
|
import kotlinx.datetime.LocalDate
|
|
|
|
|
|
actual class DateFormatter actual constructor(pattern: String) {
|
|
|
|
actual fun parseDate(dateString: String): LocalDate? {
|
|
return null // is only used in rare cases, don't implement right now
|
|
}
|
|
|
|
} |