mirror-ghostty/macos/Sources/Helpers/Extensions/Duration+Extension.swift

9 lines
225 B
Swift

import Foundation
extension Duration {
var timeInterval: TimeInterval {
return TimeInterval(self.components.seconds) +
TimeInterval(self.components.attoseconds) / 1_000_000_000_000_000_000
}
}