<@U0YD63XDY> Make a function ``` fun String.ellips...
# announcements
r
@pdvrieze Make a function
Copy code
fun String.ellipsis(maxSize: Int) = if (length > maxSize) take(maxSize - 3) + "..." else this
...
(some long expression).ellipsis(255)