Created
August 22, 2020 11:23
-
-
Save ibrahimyilmaz/04bbc8e5fd475a775ab430073b72904b 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") | |
@file:JvmMultifileClass | |
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