I am trying this code ```val CURRENT_TIME_ZONE = T...
# kotlinx-datetime
c
I am trying this code
Copy code
val CURRENT_TIME_ZONE = TimeZone.of("Europe/Berlin")
var currentTime = Clock.System.now().toLocalDateTime(CURRENT_TIME_ZONE)
And getting this error in JS alone "DateTimeException: unsupported ZoneId:Europe/Berlin" (I have tried with Different locales) Its working fine in JVM environments. Is there Anything am missing?