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

com.airbnb.epoxy.processor.Extensions.kt Maven / Gradle / Ivy

The newest version!
package com.airbnb.epoxy.processor

internal fun String.lowerCaseFirstLetter(): String {
    if (isEmpty()) {
        return this
    }

    return Character.toLowerCase(get(0)) + substring(1)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy