Re: [ServiceWorker] Should fetchStore.match reject if no match is found? (#374)

To clarify, I don't see any discussion above for this case:

```
caches.delete('myCache').then(function() {
  return caches.match(url, { name: 'myCache' })
}).then(function(resp) {
  // currently does not resolve undefined
}).catch(function(err) {
  // currently throws NotFoundError because myCache is missing
});
```

---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/374#issuecomment-97235974

Received on Tuesday, 28 April 2015 21:49:55 UTC