I am using currency pipe but does not know how to set align right/left. If Currency is a USD display right result but If I have the use INR display wrong result.
html:-
<div> {{amount | currency : 'USD' : true}} </div>
<div> {{amount | currency : 'INR' : true}} </div>
ts:-
amount = 100;
Output:-
$100
₹100
₹100 Output is wrong. The right output is 100₹. Please tell us how to set it. If any package for this please tell. I have searched many so I have to get currency masking.