www/lib/formatUSD.js

2 lines
92 B
JavaScript

module.exports = (v) => v.toLocaleString(undefined, {
style: 'currency', currency: 'USD' })