Skip to content

Instantly share code, notes, and snippets.

@prestonp
Created June 17, 2015 21:46
Show Gist options
  • Save prestonp/08b1b8d8b438be39a4d3 to your computer and use it in GitHub Desktop.
Save prestonp/08b1b8d8b438be39a4d3 to your computer and use it in GitHub Desktop.
var orderCharge = require('stamps/orders/charge');
db.orders.findOne( id, function (err, order ) {
var charge = orderCharge( order );
// getTotal is from orders/base.js
charge.getTotal();
// getApplicationCut is from orders/charge.js
charge.getApplicationCut();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment