This PR contains the work done to add some properties to the `Optional` primitives. In addition, some work has been done to improve some existing codebase as well. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: #17
11 lines
194 B
Swift
11 lines
194 B
Swift
import Foundation
|
|
|
|
public extension TimeZone {
|
|
|
|
// MARK: Zones
|
|
|
|
/// A time zone indicating it is Greenwich Mean Time or UTC+0
|
|
static let gmt = TimeZone(secondsFromGMT: 0)
|
|
|
|
}
|