ghostty/macos/Sources/Helpers/Extensions/Duration+Extension.swift
Mitchell Hashimoto 493b1f5350 wip: undo
2025-06-07 12:46:13 -07:00

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