summaryrefslogtreecommitdiff
path: root/src/helpers/currencyFormat.js
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2022-10-31 16:31:56 +0700
committerIT Fixcomart <it@fixcomart.co.id>2022-10-31 16:31:56 +0700
commitd6d2d9ceef2e95b604ac4ebdc054cad44a8440b1 (patch)
tree376278eb3f7baa6b9405177b8fb57805d4a066b9 /src/helpers/currencyFormat.js
parent97c98e0a6fa0757e58ca9dacf8e720a52e10dcf5 (diff)
Product detail and header
Diffstat (limited to 'src/helpers/currencyFormat.js')
-rw-r--r--src/helpers/currencyFormat.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/helpers/currencyFormat.js b/src/helpers/currencyFormat.js
new file mode 100644
index 00000000..dadeaec6
--- /dev/null
+++ b/src/helpers/currencyFormat.js
@@ -0,0 +1,8 @@
+export default function currencyFormat(value) {
+ const currency = new Intl.NumberFormat('id-ID', {
+ style: 'currency',
+ currency: 'IDR',
+ maximumFractionDigits: 0
+ });
+ return currency.format(value);
+} \ No newline at end of file