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

commonMain.com.copperleaf.json.utils.stringutils.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package com.copperleaf.json.utils

public fun String.indent(width: Int): String {
    return CharArray(width) { ' ' }.concatToString() + this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy