[w3c/payment-handler] Incorrect destructing in example (#254)

```js
  const { registration } =
    await navigator.serviceWorker.register('/sw.js');
```

should just be

```js
  const registration =
    await navigator.serviceWorker.register('/sw.js');
```

-- 
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/payment-handler/issues/254

Received on Friday, 16 March 2018 02:31:49 UTC