String.limit

This commit is contained in:
DBotThePony 2024-05-24 12:27:19 +07:00
parent 56f4fe46a6
commit 1d77cf8f98
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -82,3 +82,11 @@ fun <E : IStringSerializable> Collection<E>.valueOf(value: String): E {
fun <T> Executor.supplyAsync(block: Supplier<T>): CompletableFuture<T> {
return CompletableFuture.supplyAsync(block, this)
}
fun String.limit(limit: Int = 40, replacer: String = "..."): String {
if (length <= limit) {
return this
}
return substring(0, limit) + replacer
}