Skip to content

Instantly share code, notes, and snippets.

@mzeeshanid
Created December 30, 2020 10:45
Show Gist options
  • Save mzeeshanid/9748fb3710575416b760dd0f50501638 to your computer and use it in GitHub Desktop.
Save mzeeshanid/9748fb3710575416b760dd0f50501638 to your computer and use it in GitHub Desktop.
Product extension
extension Product {
func startingPrice() -> Double {
return self.variants.min(by: {$0.price < $1.price})?.price ?? 0.0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment