Skip to content

Instantly share code, notes, and snippets.

@nongdenchet
Created April 9, 2020 00:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nongdenchet/35fd29db48dc56753d3e86f03961e5b9 to your computer and use it in GitHub Desktop.
Save nongdenchet/35fd29db48dc56753d3e86f03961e5b9 to your computer and use it in GitHub Desktop.
if (featureManager.isNewInvoiceEnabled) {
// ...
if (featureManager.isStripeEnbled) {
// Show stripe with new design
} else {
// Show old payment with new design
}
// ...
} else {
// ...
if (featureManager.isStripeEnbled) {
// Show stripe with old design
} else {
// Show old payment with old design
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment