Created
August 22, 2020 11:22
-
-
Save ibrahimyilmaz/a31c16e02c598b7bd04bb1e730f759e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@file:JvmName("TransactionUtils") | |
val Transaction.formattedTransactionTime: String | |
get() = SomeFormattings(this.transactionTime) | |
fun Transaction.getFormattedTransactionTime() : String { | |
return SomeFormattings(this.transactionTime) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment