mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 09:35:42 +00:00
7 lines
183 B
Swift
7 lines
183 B
Swift
import SwiftUI
|
|
|
|
extension Date {
|
|
static func toTimerInterval(miliseconds: Double) -> ClosedRange<Self> {
|
|
now ... max(now, Date(timeIntervalSince1970: miliseconds / 1000))
|
|
}
|
|
}
|