is there a more Kotlin-y way to write this method?...
# javascript
a
is there a more Kotlin-y way to write this method?
Copy code
actual fun normalize(input: String): String {
    return js("(typeof ''.normalize === 'function') ? input.normalize() : input") as String
}
Alternatively, is there a ticket for a Kotlin standard library version of
java.text.Normalizer
that I can/should pile onto?