in Sources/OSS/Transform/Serde+Extensions.swift [30:38]
init?(from string: String, formatters: [DateFormatter]) {
for formatter in formatters {
if let date = formatter.date(from: string) {
self = date
return
}
}
return nil
}