Skip to content

Instantly share code, notes, and snippets.

@AlexPinhasov
Last active February 24, 2019 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexPinhasov/00eafd20e77bef2d459f59ea96eac144 to your computer and use it in GitHub Desktop.
Save AlexPinhasov/00eafd20e77bef2d459f59ea96eac144 to your computer and use it in GitHub Desktop.
func parseDate(from string: String?) -> Date {
guard let dateString = string else { return Date() }
if let date = self.date(from: dateString) {
return date
}
else {
return locateCorrectFormat(for: dateString)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment