Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Created February 3, 2015 13:42
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