12 lines
301 B
Swift
12 lines
301 B
Swift
import Foundation
|
|
|
|
extension Int {
|
|
func convertMillisecondsToDate() -> Date {
|
|
return Date(timeIntervalSince1970: TimeInterval(self) / 1000)
|
|
}
|
|
|
|
func convertMillisecondsToISO8601String() -> String {
|
|
return convertMillisecondsToDate().convertDateToISO8601String()
|
|
}
|
|
}
|