8f8f8b2755
macOS menu bar app providing NHL game situational awareness with league-wide scoreboard, dynamic polling, notifications with team logos, and configurable display options.
17 lines
302 B
Swift
17 lines
302 B
Swift
//
|
|
// Date+etCalendar.swift
|
|
// IceGlass
|
|
//
|
|
// Copyright 2026 Rouslan Zenetl. All Rights Reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Date {
|
|
static func etCalendar() -> Calendar {
|
|
var calendar = Calendar.current
|
|
calendar.timeZone = Date.easternTimeZone
|
|
return calendar
|
|
}
|
|
}
|