Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 6 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | export const format = (amount) => { |
||
2 | return new Intl.NumberFormat('fr-FR', { |
||
3 | style: 'currency', |
||
4 | currency: 'EUR', |
||
5 | }).format(amount); |
||
6 | }; |
||
7 |