main.ch.difty.kris.InternalExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kris-core Show documentation
Show all versions of kris-core Show documentation
Kotlin library for importing/exporting bibliographic records in RIS format
package ch.difty.kris
internal fun String.truncatedTo(maxLength: Int?): String = when {
maxLength != null -> substring(0, kotlin.math.min(maxLength, length))
else -> this
}