Skip to content

Instantly share code, notes, and snippets.

@axel-rock
axel-rock / stripe-price-format.ts
Last active August 12, 2024 18:29
Format a price from Stripe
// How to make sure to display the price from Stripe correctly using Intl.NumberFormat
new Intl.NumberFormat(undefined, {
style: 'currency',
currency: price.currency,
}).format((price.unit_amount as number) / 100)