aboutsummaryrefslogtreecommitdiff
path: root/Map/Core Extensions/Date+format.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Map/Core Extensions/Date+format.swift')
-rw-r--r--Map/Core Extensions/Date+format.swift17
1 files changed, 0 insertions, 17 deletions
diff --git a/Map/Core Extensions/Date+format.swift b/Map/Core Extensions/Date+format.swift
deleted file mode 100644
index d29ed0f..0000000
--- a/Map/Core Extensions/Date+format.swift
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// Date+format.swift
-// Map
-//
-// Created by Ruben Beltran del Rio on 2/1/21.
-//
-
-import Foundation
-
-extension Date {
- func format() -> String {
- let formatter = DateFormatter()
- formatter.dateStyle = .short
- formatter.timeStyle = .medium
- return formatter.string(from: self)
- }
-}