Created
July 18, 2019 18:09
-
-
Save chalu/cd5647f7ce2a3b2e556c286246e3c54e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const getElligibleCustomers = chain( | |
customerAgeIsOrAbove(18), | |
isCustomerForMoreThan3Years, | |
totalItemsBoughtIsOver(50), | |
shippingAddressIsWithin(['Abuja', 'Lagos', 'Ibadan']) | |
); | |
const determineDiscountSale = chain( | |
getElligibleCustomers, | |
discountOrdersAt('15%'), | |
applyTaxOf('5%') | |
); | |
const discountSale = determineDiscountSale(todaysOrders); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment