Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. amountWithFees: function() {
  2.         var amount = this.amountWithoutFees();
  3.  
  4.         if (amount < 0.01) {
  5.             return 0;
  6.         }
  7.  
  8.         return parseFloat((amount + 0.3 + (amount * 0.032) + (amount * 0.032 * 0.032)).toFixed(2));
  9.     },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement