Re: [slightlyoff/ServiceWorker] CORS pre-flight for foreign fetch (#880)

Do you mean this?
```js
self.onforeignfetch = evt => {
  var evilRequest = evt.request;
  evt.respondWith(fetch(evilRequest));
};
```

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/880#issuecomment-224340794

Received on Tuesday, 7 June 2016 16:44:19 UTC