Re: [w3c/browser-payment-api] Change the value of currencySystem to an enum (#521)

```JS
// Real money
const dollars = {
    currency: "USD" ,
    value: "100000000.00",
    currencySystem: "ISO427", 
};

// Mickey Mouse Money(TM)
const mickeys = {
    currency: "MMM",
    value: "0.01",
    currencySystem: "https://disney.com/mickey/mouse/money",
};
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/browser-payment-api/issues/521#issuecomment-300083135

Received on Tuesday, 9 May 2017 07:24:57 UTC