Skip to content

Instantly share code, notes, and snippets.

@Nirajpaul2
Last active April 15, 2022 04:57
Show Gist options
  • Save Nirajpaul2/92d95bce04252967820f9ce53f79dd8f to your computer and use it in GitHub Desktop.
Save Nirajpaul2/92d95bce04252967820f9ce53f79dd8f to your computer and use it in GitHub Desktop.
CapitalizedWrapper
@propertyWrapper
struct Capitalized {
var wrappedValue: String {
didSet { wrappedValue = wrappedValue.capitalized }
}
init(wrappedValue: String) {
self.wrappedValue = wrappedValue.capitalized
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment