[F] Add null cases for family updates checking

This commit is contained in:
Hykilpikonna
2021-01-26 19:27:42 -05:00
parent 3bb39b0027
commit 5529e5422c
3 changed files with 20 additions and 2 deletions
+6
View File
@@ -253,3 +253,9 @@ extension UserDefaults
set { self[key] = newValue?.rawValue }
}
}
/// String CSV
extension String
{
var csv: [String] { components(separatedBy: ";") }
}