swift-libs/Sources/Core/Extensions/TimeZone+Zone.swift
Javier Cicchelli ffb1170760 [Enhancement] Optional+Nil extension (#17)
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
2023-05-06 21:19:40 +00:00

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)
}