How do you bind to the currency field in Angular2?
If I have a table of data:
Currency | Amount | Desired Result
USD | 12,000 | $12,000
EUR | 10,000 | €10,000
I know the standard formatting pipe: {{ item.Amount | currency:'EUR':true:'1.2-2'}}
But I can't seem to do this dynamically?