Created
November 5, 2013 20:48
-
-
Save glynrob/7325936 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var addDelivery = function(value){ return value + 5; }; | |
var addTax = function(value){ return value*1.175; }; | |
var calcCost = _.compose(addDelivery, addTax); | |
calcCost(12) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment