mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:02:14 -06:00
8 lines
116 B
Swift
8 lines
116 B
Swift
import Foundation
|
|
|
|
extension Date {
|
|
var epocUtcNowInMs: Int {
|
|
Int(timeIntervalSince1970 * 1000)
|
|
}
|
|
}
|