10 lines
227 B
Swift
10 lines
227 B
Swift
import Foundation
|
|
|
|
public extension Date {
|
|
var myFormat: String {
|
|
let dateFormatter = DateFormatter()
|
|
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
|
|
return dateFormatter.string(from: self)
|
|
}
|
|
}
|