another.im-ios/Monal/another.im/Helpers/TimeInterval+Extensions.swift

10 lines
215 B
Swift
Raw Normal View History

2024-11-19 16:07:47 +00:00
import Foundation
extension TimeInterval {
var minAndSec: String {
let minutes = Int(self) / 60
let seconds = Int(self) % 60
return String(format: "%02d:%02d", minutes, seconds)
}
}