oliverdavies.uk/src/price-formatter.ts

8 lines
163 B
TypeScript
Raw Normal View History

2023-10-22 23:50:08 +00:00
const priceFormatter = new Intl.NumberFormat('en-GB', {
currency: 'GBP',
maximumSignificantDigits: 2,
style: 'currency',
});
export default priceFormatter;