> We should consider this in the finer details of the design. The flexibility that the checkout API offers is my preference but we need to consider situations where a call like request('billingAddress') may be made in future in a browser that only supports returning the shipping address. i.e. Versioning Instead of versioning, I would prefer feature detection. For example: ```js if (checkout.supports('billingAddress')) { checkout.request('billingAddress'); } ``` or: ```js if (checkout.requestBillingAddress) { checkout.requestBillingAddress(); } ``` --- Reply to this email directly or view it on GitHub: https://github.com/w3c/webpayments/issues/89#issuecomment-185484061Received on Thursday, 18 February 2016 00:55:26 UTC
This archive was generated by hypermail 2.4.0 : Friday, 17 January 2020 16:43:14 UTC