21 lines
513 B
Swift
21 lines
513 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Date {
|
|
|
|
var utcString: String {
|
|
let timezone = TimeZone(abbreviation: "UTC")
|
|
let dateFormatter = DateFormatter()
|
|
dateFormatter.timeZone = timezone
|
|
dateFormatter.dateFormat = "EEE MMM d HH:mm:ss 'UTC' yyyy"
|
|
dateFormatter.locale = Locale(identifier: "en_US_POSIX")
|
|
return dateFormatter.string(from: self)
|
|
}
|
|
}
|