mirror of
https://github.com/EmergeTools/Pow.git
synced 2026-03-26 09:05:50 +00:00
Co-authored-by: Robert Böhnke <robb@robb.is> Co-authored-by: Kasper Lahti <kasper@lahti.email>
9 lines
231 B
Swift
9 lines
231 B
Swift
import Foundation
|
|
|
|
@available(iOS 16.0, *)
|
|
@available(macOS 13.0, *)
|
|
internal extension Duration {
|
|
var timeInterval: TimeInterval {
|
|
TimeInterval(components.seconds) + TimeInterval(components.attoseconds) / 1e18
|
|
}
|
|
}
|