Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function formatMoney (amount, flag=0) {
  2. const options = {
  3. style: 'currency',
  4. currency: 'USD',
  5. minimumFractionDigits: 2,
  6. };
  7.  
  8. if (flag) {
  9. // Leave off .00 for whole dollar amounts
  10. if (amount % 100 === 0) options.minimumFractionDigits = 0;
  11. }
  12.  
  13. const formatter = new Intl.NumberFormat('en-US', options);
  14.  
  15. return formatter.format(amount / 100);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement