extension Date { func toString() -> String { let dateFormatter = DateFormatter() dateFormatter.dateFormat = "yyyy-MM-dd HH:mm" // 2022-07-03 23:14 return dateFormatter.string(from: self) } }