I cant seem to import `Char.isLetter()` in my comm...
# kotlin-native
s
I cant seem to import
Char.isLetter()
in my common code for multiplatform project. Any help ?
r
It exists only in JVM and Native according to https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/is-letter.html. It’s not in common because it doesn’t exist for JS. If you don’t need JS you could set up your own expect/actual definitions to use it in common
👍 1