Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created November 5, 2013 20:48
Show Gist options
  • Save glynrob/7325936 to your computer and use it in GitHub Desktop.
Save glynrob/7325936 to your computer and use it in GitHub Desktop.
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