This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
fileprivate let userDefaults = UserDefaults.main | |
fileprivate let userDefaultsDomain = Bundle.main.bundleIdentifier ?? "" | |
fileprivate extension String { | |
var appendingAppDomain: String { | |
"\(userDefaultsDomain).\(self)" | |
} | |
} |
NewerOlder