oliverdavies.uk/src/price-formatter.ts

8 lines
163 B
TypeScript

const priceFormatter = new Intl.NumberFormat('en-GB', {
currency: 'GBP',
maximumSignificantDigits: 2,
style: 'currency',
});
export default priceFormatter;