Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Created November 2, 2020 19:07
Show Gist options
  • Save meyusufdemirci/3069bb11aafc79ed273b47d5aaf2e21b to your computer and use it in GitHub Desktop.
Save meyusufdemirci/3069bb11aafc79ed273b47d5aaf2e21b to your computer and use it in GitHub Desktop.
class func uniqueId(length: Int) -> String {
let letters: String = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
return String((0 ..< length).map { _ in letters.randomElement()! })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment