All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.kotlinx.css.Extensions.kt Maven / Gradle / Ivy

package kotlinx.css

private val CAPITAL_LETTER = Regex("[A-Z]")

fun String.hyphenize(): String =
    replace(CAPITAL_LETTER) {
        "-${it.value.lowercase()}"
    }

operator fun String.times(n: Int): String = repeat(n)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy