Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Created February 3, 2015 13:42
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 coryhouse/1f925fa4aec1d8978346 to your computer and use it in GitHub Desktop.
Save coryhouse/1f925fa4aec1d8978346 to your computer and use it in GitHub Desktop.
Cart.js AMD Module
//cart.js
define(['user'], function (user) {
var calculateSalesTax = function() {
var userPostalCode = user.postalCode;
//logic to calculate sales tax continues...
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment