10 lines
199 B
Swift
10 lines
199 B
Swift
import Foundation
|
|
|
|
extension Date {
|
|
func formatDate() -> String {
|
|
let formatter = DateFormatter()
|
|
formatter.dateStyle = .short
|
|
return formatter.string(from: self)
|
|
}
|
|
}
|