Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- extension Kotlinx_datetimeLocalDate {
- func toDate() -> Date? {
- let components = DateComponents(year: Int(self.year), month: Int(self.month.ordinal+1), day: Int(self.dayOfMonth))
- return Calendar.current.date(from: components)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement