blob: b6c28edd0f7bc98b0e7d525fafd72871053f29d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import Foundation
nonisolated extension Date {
/// A short relative description like "2h ago", "3d ago", or "Jan 5, 2025".
var relativeDescription: String {
let formatter = RelativeDateTimeFormatter()
formatter.unitsStyle = .abbreviated
return formatter.localizedString(for: self, relativeTo: .now)
}
}
|