Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jacobsapps/803011eb03f65090034ea10fb51911d6 to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/803011eb03f65090034ea10fb51911d6 to your computer and use it in GitHub Desktop.
extension CardEntity {
func toCard() -> Card? {
guard let smallImage = downscaleImageData(imageData) else { return nil }
// ...
return Card(id: id, image: smallImage, stats: cardStats, createdAt: createdAt)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment