// // Date.swift // Meshtastic // // Copyright(c) Garth Vander Houwen 4/25/23. // import Foundation extension Date { static var currentTimeStamp: Int64 { return Int64(Date().timeIntervalSince1970 * 1000) } func formattedDate(format: String) -> String { let dateformat = DateFormatter() dateformat.dateFormat = format return dateformat.string(from: self) } }