fskpriceformatter
v1.0.0
Published
🌍 Format price based on locale and currency.
Readme
format-price-locale
🌍 Format price based on locale and currency.
📦 Install
npm install format-price-local
Usage(用法)
import { formatPrice } from 'format-price-locale';
formatPrice(1000);
// $1,000.00 (default en-US)
formatPrice(1000, { locale: 'fr-FR', currency: 'EUR' });
// 1 000,00 €
formatPrice(1234567.89, { locale: 'en-IN', currency: 'INR' });
// ₹12,34,567.89