Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active July 19, 2020 01:59
Show Gist options
  • Save apatronl/efcc4186ed29ab692545c48596942286 to your computer and use it in GitHub Desktop.
Save apatronl/efcc4186ed29ab692545c48596942286 to your computer and use it in GitHub Desktop.
public struct EmojiDetails {
public let emoji: String
public let name: String
public let description: String
public let url: URL?
init(emoji: String, name: String, description: String) {
self.emoji = emoji
self.name = name
self.description = description
self.url = URL(string: "emoji://\(name.filter { !$0.isWhitespace })")
}
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment