Files
workavia-mail-front/ios/TwakeCore/Extensions/DateExtensions.swift
T
dab246 b1b2bb90a5 TF-2384 Handle refresh token when token expired in NSE
Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit c8a39bb42792770c001ac90d6301d53126225d95)
2024-01-08 14:25:26 +01:00

8 lines
123 B
Swift

import Foundation
extension Date {
func isBefore(_ otherDate: Date) -> Bool {
return self < otherDate
}
}