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

com.tencent.devops.common.api.constant.StringConstant.kt Maven / Gradle / Ivy

package com.tencent.devops.common.api.constant

fun String.coerceAtMaxLength(maxLength: Int): String =
    if (this.length > maxLength) this.substring(0, maxLength) else this




© 2015 - 2025 Weber Informatics LLC | Privacy Policy