Files
David Jennes 4d1d3591c7 Bump year
2022-07-30 20:47:39 +02:00

17 lines
277 B
Swift

//
// SwiftGenKit
// Copyright © 2022 SwiftGen
// MIT Licence
//
import Foundation
extension String {
func uppercasedFirst() -> String {
guard let first = self.first else {
return self
}
return String(first).uppercased() + String(self.dropFirst())
}
}