mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-02-02 11:33:02 +01:00
18 lines
524 B
Swift
18 lines
524 B
Swift
import Foundation
|
|
|
|
extension DateFormatter {
|
|
/// Date format used in JSON returned from `URL.downloads`
|
|
static let downloadsDateModified: DateFormatter = {
|
|
let formatter = DateFormatter()
|
|
formatter.dateFormat = "MM/dd/yy HH:mm"
|
|
return formatter
|
|
}()
|
|
|
|
/// Date format used in HTML returned from `URL.download`
|
|
static let downloadsReleaseDate: DateFormatter = {
|
|
let formatter = DateFormatter()
|
|
formatter.dateFormat = "MMMM d, yyyy"
|
|
return formatter
|
|
}()
|
|
}
|