``` fun String.toNotEmptyOrNull() = if (this.isEmp...
# getting-started
b
Copy code
fun String.toNotEmptyOrNull() = if (this.isEmpty()) null else this