UNPKG
number-to-currency
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
A Simple 👌 & lightweight JavaScript number to currency formatter library.
number-to-currency
/
index.js
5 lines
(3 loc)
•
120 B
JavaScript
View Raw
1
2
3
4
5
const
FormatToCurrency
= (
number
) =>
new
Intl
.
NumberFormat
(
"en-US"
).
format
(
number
);
export
default
FormatToCurrency
;