zircles-android/app/src/main/java/cash/z/ecc/android/ext/Extensions.kt

3 lines
126 B
Kotlin
Raw Normal View History

2020-02-21 15:53:29 -08:00
package cash.z.ecc.android.ext
fun Boolean.asString(ifTrue: String = "", ifFalse: String = "") = if(this) ifTrue else ifFalse