mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00
10 lines
237 B
Swift
10 lines
237 B
Swift
import Foundation
|
|
|
|
extension Date {
|
|
var timeAgoString: String {
|
|
let formatter = RelativeDateTimeFormatter()
|
|
formatter.unitsStyle = .full
|
|
return formatter.localizedString(for: self, relativeTo: Date())
|
|
}
|
|
}
|