diff options
Diffstat (limited to '.next/dist/lib')
| -rw-r--r-- | .next/dist/lib/formatMoney.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.next/dist/lib/formatMoney.js b/.next/dist/lib/formatMoney.js new file mode 100644 index 0000000..529dd2f --- /dev/null +++ b/.next/dist/lib/formatMoney.js @@ -0,0 +1,9 @@ +'use strict'; + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +exports.default = function (amount) { + return '$' + (amount / 100).toLocaleString(); +};
\ No newline at end of file |
