Skip to content

Instantly share code, notes, and snippets.

@huntercmeyer
Created October 2, 2021 15:08
Show Gist options
  • Save huntercmeyer/bc197dd13a8789e8b3ff00fafcc6789c to your computer and use it in GitHub Desktop.
Save huntercmeyer/bc197dd13a8789e8b3ff00fafcc6789c to your computer and use it in GitHub Desktop.
import Foundation
extension DateFormatter {
static var full: DateFormatter {
let formatter = DateFormatter()
formatter.timeStyle = .full
formatter.dateStyle = .long
return formatter
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment