8 lines
213 B
Kotlin
8 lines
213 B
Kotlin
package com.simplemobiletools.smsmessenger.extensions
|
|
|
|
import android.text.format.DateFormat
|
|
import java.util.*
|
|
|
|
fun Date.format(pattern: String): String {
|
|
return DateFormat.format(pattern, this).toString()
|
|
}
|