yole
fun StringBuilder.appendIf(condition: Boolean, value: String): StringBuilder { if (condition) append(value); return this }