Skip to content

Instantly share code, notes, and snippets.

@yakushevichsv
Created September 22, 2021 19:23
Show Gist options
  • Save yakushevichsv/2b6275418f11fbb8c2cf70a83807d573 to your computer and use it in GitHub Desktop.
Save yakushevichsv/2b6275418f11fbb8c2cf70a83807d573 to your computer and use it in GitHub Desktop.
Empty String
extension String {
static let empty = "" // swift 5.5 allows static let constructs in extension
#if DEBUG
func check() {
assert(Self.empty == "")
}
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment